// client/webpack.config.js
const path = require('path');
module.exports = {
entry: './src/app.js',
output: {
filename: 'meu-bundle.js',
path: path.resolve(__dirname, 'distribution')
},
module: {
rules: [
{
test: /\.calop$/,
use: {
loader: 'calopsita-loader'
}
}
]
}
}