笔记:配合 Vue.js 配置 Webpack - 11. 最最基本 webpack.config.js 配置
let Webpack = require('webpack');
let path = require('path');
module.exports = {
entry: './src/js/app.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
}
};