We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6df3dea + 98f95d7 commit 89c5f3bCopy full SHA for 89c5f3b
1 file changed
app/react-native/src/server/config/webpack.config.prod.js
@@ -2,15 +2,12 @@ import path from 'path';
2
import webpack from 'webpack';
3
import { OccurenceOrderPlugin, includePaths, excludePaths } from './utils';
4
5
-const entries = {
6
- preview: [],
7
- manager: [path.resolve(__dirname, '../../manager')],
8
-};
9
-
10
const config = {
11
bail: true,
12
devtool: '#cheap-module-source-map',
13
- entry: entries,
+ entry: {
+ manager: [path.resolve(__dirname, '../../manager')],
+ },
14
output: {
15
path: path.join(__dirname, 'dist'),
16
filename: 'static/[name].bundle.js',
0 commit comments