mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
20 lines
322 B
JavaScript
20 lines
322 B
JavaScript
const config = require("./webpack.config");
|
|
|
|
module.exports = {
|
|
...config,
|
|
output: {
|
|
...config.output,
|
|
filename: "engine.io.min.js",
|
|
},
|
|
mode: "production",
|
|
module: {
|
|
rules: [
|
|
...config.module.rules,
|
|
{
|
|
test: /\.js$/,
|
|
loader: "webpack-remove-debug",
|
|
},
|
|
],
|
|
},
|
|
};
|