Remove old webpack.config.js

This commit is contained in:
Daniel Imms
2018-09-01 19:57:51 -07:00
parent 784a142dac
commit e2267fce92
-19
View File
@@ -1,19 +0,0 @@
const path = require('path');
module.exports = {
entry: './demo/main.js',
output: {
path: path.resolve(__dirname, 'demo/dist'),
filename: 'bundle.js'
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.js$/,
use: ["source-map-loader"],
enforce: "pre"
}
]
}
};