mirror of
https://github.com/DigiLive/mushroom-strategy.git
synced 2025-10-04 00:41:01 +02:00
21 lines
416 B
JavaScript
21 lines
416 B
JavaScript
![]() |
const path = require("path");
|
||
|
const webpack = require("webpack");
|
||
|
|
||
|
module.exports = {
|
||
|
mode: "development",
|
||
|
devtool: "source-map",
|
||
|
entry: "./src/mushroom-strategy.js",
|
||
|
output: {
|
||
|
filename: "mushroom-strategy.js",
|
||
|
path: path.resolve(__dirname, "dist"),
|
||
|
},
|
||
|
optimization: {
|
||
|
minimize: false,
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.optimize.LimitChunkCountPlugin({
|
||
|
maxChunks: 1,
|
||
|
}),
|
||
|
],
|
||
|
};
|