import { BootOptions } from '@blueeast/bluerain-os'; import commonBootOptions from '../common/bluerain'; import deepmerge from 'deepmerge'; // TODO: Only for evaluation, remove this /** * Add your platform specific configs here. * We keep all the universal (cross platform) configs in * the common folder, and extend them here. */ const bootOptions: BootOptions = { platform: [ require('@blueeast/bluerain-platform-react-native-web') ], plugins: [ require('../../src'), require('@blueeast/bluerain-plugin-material-ui') ] }; export default deepmerge(commonBootOptions, bootOptions);