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