mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 10:29:11 +00:00
12 lines
212 B
JavaScript
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',
|
|
}; |