加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
wanglinyong 提交于 2019-09-06 10:24 . 修复图片上传
var path = require('path')
var webpack = require('webpack')
const NODE_ENV = process.env.NODE_ENV;
const CompressionWebpackPlugin = require('compression-webpack-plugin')
module.exports = {
// entry: './src/index.js', //打包 配置
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),//'./build' //打包 配置
publicPath: '/dist/',//'/build/ //打包 配置
filename: 'build.js',//index.js //打包 配置
libraryTarget: 'umd',
library: 'markdown-vue',
umdNamedDefine: true
},
devtool: NODE_ENV==='develop'?'cheap-module-eval-source-map':'cheap-module-source-map',
module: {
rules: [
{
test: /\.css$/,
use: [
'vue-style-loader',
'css-loader'
],
}, {
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
}
// other vue-loader options go here
}
},
{
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]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
jquery: "jquery",
"window.jQuery": "jquery"
})
],
/*env: {
// 原有
browser: true,
// 添加
jquery: true
},*/
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map'
}
if (NODE_ENV === 'production'||NODE_ENV==='npm') {
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
}),
new CompressionWebpackPlugin({
algorithm: 'gzip'
})
])
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化