You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/webpack.config.js

27 lines
350 B
JavaScript

module.exports = {
entry: './src/client',
target: 'web',
output: {
filename: 'dist/bundle.js'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.json$/,
loader: 'json'
}
]
},
node: {
fs: 'empty'
}
}