blockbench/webpack.config.js
2021-02-09 22:26:52 +01:00

22 lines
438 B
JavaScript

const PathModule = require('path')
module.exports = {
mode: 'production',
target: 'node',
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: PathModule.resolve(__dirname, 'js', 'webpack')
},
module: {
rules: [
{
test: /\.(jpg|png)$/,
use: {
loader: 'url-loader'
}
}
]
}
}