2018-08-19 20:18:53 +00:00
|
|
|
var path = require('path');
|
|
|
|
var VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: 'development',
|
2018-08-28 11:15:47 +00:00
|
|
|
entry: './js/app/main.js',
|
2018-08-19 20:18:53 +00:00
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, './js/public'),
|
|
|
|
publicPath: '/public/',
|
|
|
|
filename: 'build.js'
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new VueLoaderPlugin()
|
|
|
|
],
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
|
|
|
loader: 'vue-loader',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loader: 'babel-loader',
|
|
|
|
exclude: /node_modules/
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|jpg|gif|svg)$/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]?[hash]'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'vue-style-loader',
|
|
|
|
'css-loader'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'vue$': 'vue/dist/vue.esm.js',
|
|
|
|
'@': path.resolve(__dirname, 'js/app')
|
|
|
|
}
|
|
|
|
},
|
|
|
|
devServer: {
|
|
|
|
historyApiFallback: true,
|
|
|
|
noInfo: true,
|
|
|
|
overlay: true
|
|
|
|
},
|
|
|
|
performance: {
|
|
|
|
hints: false
|
|
|
|
},
|
|
|
|
devtool: '#eval-source-map'
|
|
|
|
};
|