UNPKG

238 BPlain TextView Raw
1export = (env: string) => ({
2 entry: __dirname + "/client.neweb.js",
3 output: {
4 path: __dirname + "/dist",
5 filename: "bundle." + (env === "production" ? "production" : "development") + ".neweb.js",
6 },
7});