13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: './server.js',
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
publicPath: '/',
|
|
filename: 'final.js'
|
|
},
|
|
target: 'node'
|
|
}
|