This commit is contained in:
Andrey Vlasov
2020-02-15 17:44:26 +03:00
parent 672e09abb5
commit 74957cef1b
4 changed files with 15 additions and 10 deletions
+5 -3
View File
@@ -8,7 +8,7 @@ const outputDirectory = 'dist';
module.exports = {
mode: 'development',
entry: {
bootstrap: ['./src/main.tsx'],
bootstrap: ['./src/main.tsx'],
example: ['./src/example/main.tsx'],
example2: ['./src/example2/main.tsx']
},
@@ -31,8 +31,10 @@ module.exports = {
{ from: 'stubs/importmap.json' },
{ from: './node_modules/systemjs/dist', to: 'extlib/systemjs' },
{ from: './node_modules/react/umd', to: 'extlib/react' },
{ from: './node_modules/react-dom/umd', to: 'extlib/react-dom' }
// { from: 'exampleApp' }
{ from: './node_modules/react-dom/umd', to: 'extlib/react-dom' },
{ from: './node_modules/uds-news-original/dist' },
{ from: './node_modules/uds-org/dist' },
{ from: './node_modules/uds-sections-origin/dist' }
])
],
devtool: '#source-map',