Files
feather/webpack.config.js
Cole Bemis 9ce3c68a9b Import Vue
2017-01-28 15:03:26 -08:00

23 lines
367 B
JavaScript

var path = require('path');
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname),
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.common.js'
}
}
}