Browse Source

Avoids duplicate bundling

main
Eric Amodio 1 year ago
parent
commit
168d81954c
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      webpack.config.js

+ 9
- 0
webpack.config.js View File

@ -478,8 +478,17 @@ function getWebviewsConfig(mode, env) {
resolve: {
alias: {
'@env': path.resolve(__dirname, 'src', 'env', 'browser'),
'@microsoft/fast-foundation': path.resolve(
__dirname,
'node_modules/@microsoft/fast-foundation/dist/esm/index.js',
),
'@microsoft/fast-react-wrapper': path.resolve(
__dirname,
'node_modules/@microsoft/fast-react-wrapper/dist/esm/index.js',
),
react: path.resolve(__dirname, 'node_modules', 'react'),
'react-dom': path.resolve(__dirname, 'node_modules', 'react-dom'),
tslib: path.resolve(__dirname, 'node_modules/tslib/tslib.es6.js'),
},
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
modules: [basePath, 'node_modules'],

Loading…
Cancel
Save