drawdb/server/webpack.config.js
Tei Yuan Wei 6c3d916a4d poc
2024-09-20 19:00:02 +08:00

12 lines
212 B
JavaScript

const path = require('path');
module.exports = {
mode: 'production',
entry: './index.js',
output: {
path: path.join(__dirname),
publicPath: '/',
filename: 'server.js',
},
target: 'node',
};