You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
523 B
30 lines
523 B
7 years ago
|
const path = require('path');
|
||
|
const fs = require('fs');
|
||
|
|
||
|
const webpack = require('webpack');
|
||
|
|
||
|
|
||
|
module.exports = {
|
||
|
mode: 'production',
|
||
|
target: 'node',
|
||
|
node: {
|
||
|
__dirname: false,
|
||
|
__filename: false,
|
||
|
},
|
||
|
entry: [ 'babel-polyfill', './dist/server.js' ],
|
||
|
output: {
|
||
|
filename: "server-6-14.js",
|
||
|
path: path.join(__dirname, '../dist')
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
use: [
|
||
|
{ loader: 'babel-loader' }
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|