diff options
Diffstat (limited to 'website/sandbox/nut-score/UNUSED_webpack.config.js')
-rw-r--r-- | website/sandbox/nut-score/UNUSED_webpack.config.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/website/sandbox/nut-score/UNUSED_webpack.config.js b/website/sandbox/nut-score/UNUSED_webpack.config.js new file mode 100644 index 000000000000..3260e8f645e1 --- /dev/null +++ b/website/sandbox/nut-score/UNUSED_webpack.config.js @@ -0,0 +1,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', + }, +}; \ No newline at end of file |