2018-08-23 15:11:31 +08:00
|
|
|
var path = require('path')
|
|
|
|
var webpack = require('webpack')
|
2018-12-20 11:32:57 +08:00
|
|
|
const NODE_ENV = process.env.NODE_ENV;
|
2019-05-09 16:17:47 +08:00
|
|
|
const CompressionWebpackPlugin = require('compression-webpack-plugin')
|
2019-10-28 14:57:03 +08:00
|
|
|
const isDev = process.env.NODE_ENV === 'development';
|
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2018-08-23 15:11:31 +08:00
|
|
|
|
2019-10-28 14:57:03 +08:00
|
|
|
let analyzerPlugin = [];
|
|
|
|
if(process.env.analyzer==='true'){
|
|
|
|
analyzerPlugin.push(new BundleAnalyzerPlugin())
|
|
|
|
}
|
2018-08-23 15:11:31 +08:00
|
|
|
module.exports = {
|
2019-10-28 14:57:03 +08:00
|
|
|
entry: NODE_ENV === 'npm' ? './src/index.js' : './src/main.js',
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, NODE_ENV === 'npm' ? './build' : './dist'),
|
|
|
|
publicPath: NODE_ENV === 'npm' ? '/build/' : '/dist/',
|
|
|
|
filename: NODE_ENV === 'npm' ? 'index.js' : 'build.js',
|
|
|
|
libraryTarget: 'umd',
|
|
|
|
library: 'markdown-vue',
|
|
|
|
umdNamedDefine: true
|
|
|
|
},
|
|
|
|
devtool: isDev ? 'cheap-module-eval-source-map' : 'cheap-module-source-map',
|
|
|
|
devServer: {
|
|
|
|
historyApiFallback: true,
|
|
|
|
noInfo: true,
|
|
|
|
overlay: true
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'vue-style-loader',
|
|
|
|
'css-loader'
|
|
|
|
],
|
|
|
|
}, {
|
|
|
|
test: /\.vue$/,
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
loaders: {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loader: 'babel-loader',
|
|
|
|
exclude: /node_modules/
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]?[hash]'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2018-08-23 15:11:31 +08:00
|
|
|
},
|
2019-10-28 14:57:03 +08:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'vue$': 'vue/dist/vue.esm.js'
|
|
|
|
},
|
|
|
|
extensions: ['*', '.js', '.vue', '.json']
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
...analyzerPlugin,
|
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
|
|
compress: {
|
|
|
|
warnings: false
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new webpack.LoaderOptionsPlugin({
|
|
|
|
minimize: true
|
|
|
|
})
|
|
|
|
]
|
2018-08-23 15:11:31 +08:00
|
|
|
}
|
|
|
|
|