2018-03-19 06:48:05 +00:00
|
|
|
const path = require('path');
|
|
|
|
const webpack = require('webpack');
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
2018-04-29 20:33:27 +00:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2018-03-19 06:48:05 +00:00
|
|
|
|
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
module.exports = (env, options) => {
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
let config = {
|
|
|
|
mode: options.mode,
|
|
|
|
entry: './public/src/app.js',
|
|
|
|
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, './public/dist'),
|
|
|
|
publicPath: '/',
|
|
|
|
filename: 'build.js'
|
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'vue-style-loader',
|
|
|
|
'css-loader'
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: [
|
|
|
|
'vue-style-loader',
|
|
|
|
'css-loader',
|
|
|
|
'sass-loader'
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
loaders: {
|
|
|
|
'scss': [
|
|
|
|
'vue-style-loader',
|
|
|
|
'css-loader',
|
|
|
|
'sass-loader'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loader: 'babel-loader',
|
|
|
|
exclude: /node_modules/
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|jpg|gif|svg)$/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]?[hash]'
|
2018-03-19 06:48:05 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-29 20:33:27 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: path.resolve(__dirname, './public/src/index.html')
|
|
|
|
})
|
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'vue$': 'vue/dist/vue.esm.js'
|
2018-03-19 06:48:05 +00:00
|
|
|
},
|
2018-04-29 20:33:27 +00:00
|
|
|
extensions: ['*', '.js', '.vue', '.json']
|
|
|
|
},
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
devServer: {
|
|
|
|
historyApiFallback: true,
|
|
|
|
noInfo: true,
|
|
|
|
overlay: true
|
|
|
|
},
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
performance: {
|
|
|
|
hints: false
|
2018-03-19 06:48:05 +00:00
|
|
|
},
|
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
devtool: '#eval-source-map'
|
|
|
|
};
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
if (options.mode === 'production')
|
|
|
|
{
|
|
|
|
config.devtool = '#source-map'
|
|
|
|
config.plugins = (config.plugins || []).concat([
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: '"production"'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new webpack.LoaderOptionsPlugin({
|
|
|
|
minimize: true
|
|
|
|
}),
|
|
|
|
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
// To see what's using the space in the bundle, uncomment this
|
|
|
|
//new BundleAnalyzerPlugin()
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
config.entry = [
|
|
|
|
config.entry,
|
|
|
|
'webpack-hot-middleware/client'
|
|
|
|
];
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
config.plugins = (config.plugins || []).concat([
|
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
|
|
new webpack.NoEmitOnErrorsPlugin()
|
|
|
|
]);
|
|
|
|
}
|
2018-03-19 06:48:05 +00:00
|
|
|
|
2018-04-29 20:33:27 +00:00
|
|
|
return config;
|
|
|
|
};
|