gg / projects /text_to_speech /webpack.config.js
mfoud444's picture
first commit
79859e3
raw
history blame
372 Bytes
const path = require('path');
const webpack = require('webpack');
module.exports = {
mode: 'production',
entry: {
server: './index.js',
},
output: {
path: path.join(__dirname, 'build'),
filename: 'index.js'
},
module: {
rules: [
{
exclude: /node_modules/
}
]
}
};