Webpack compatibility layer for Bitwig's scripting environment. Requires webpack v5+.
Currently this plugin just adds support for chunking by adding the appropriate ordered load
calls to the top of entry files.
npm install --save-dev bitwig-webpack-plugin
// webpack.config.js
const BitwigWebpackPlugin = require('bitwig-webpack-plugin');
module.exports = {
...
plugins: [
new BitwigWebpackPlugin(),
...
],
...
}