testcafe-workshop/webpack.config.js
Kent C. Dodds 86330e922d 🐢 Adding css
2015-08-10 06:35:37 -06:00

20 lines
315 B
JavaScript

var path = require('path');
module.exports = {
entry: './app.js',
output: {
filename: 'bundle.js',
path: here()
},
context: here('js'),
module: {
loaders: [
{test: /\.css$/, loaders: ['style', 'css']}
]
}
};
function here(d) {
return d ? path.join(__dirname, d) : __dirname;
}