Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
'react',
'react-dom'
],
globals: './globals.js'
},
output: {
path: outputPath,
filename: '[name].js'
},
devServer: {
disableHostCheck: true,
contentBase: outputPath,
host: '0.0.0.0'
},
plugins: [
...baseConfig.plugins,
...require('./plugins')
],
resolve: DEBUG ? require('./resolve') : { mainFields: ['main'] }
}
module.exports = function plugins () {
return require('@instructure/ui-webpack-config').plugins
}