Files
mixly3-server/webpack.common.cjs
2025-10-04 10:33:41 +08:00

13 lines
291 B
JavaScript
Executable File

const path = require('path');
const nodeExternals = require('webpack-node-externals');
module.exports = {
target: 'node',
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.cjs'
},
externals: [nodeExternals()]
};