blob: 3260e8f645e143053676149a0a5ecd503e2dc395 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
const path = require('path');
module.exports = {
entry: './src/Index.bs.js',
// If you ever want to use webpack during development, change 'production'
// to 'development' as per webpack documentation. Again, you don't have to
// use webpack or any other bundler during development! Recheck README if
// you didn't know this
mode: 'production',
output: {
path: path.join(__dirname, "bundleOutput"),
filename: 'index.js',
},
};
|