You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
511 B

const path = require('path');
module.exports = {
entry: './src/custom-module-entry.js', // File where you'll use and expose the libraries
output: {
filename: 'custom-module-bundle.js',
path: path.resolve(__dirname, 'dist'),
library: 'customModule',
libraryTarget: 'var'
},
mode: 'production',
target: 'webworker',
resolve: {
fallback: {
"crypto": false // This might be needed if some module tries to access node's crypto, which is not available in browsers
}
}
};