MCSM-Daemon/webpack.config.js
2022-08-05 16:06:17 +08:00

16 lines
362 B
JavaScript

/* eslint-disable no-undef */
const path = require("path");
const nodeExternals = require("webpack-node-externals");
module.exports = {
mode: "production",
entry: "./dist/app.js",
target: "node",
externalsPresets: { node: true },
externals: [nodeExternals()],
output: {
filename: "app.js",
path: path.resolve(__dirname, "production")
}
};