1 Star 0 Fork 32

龙彦/vue-bl-markdown-editor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 2.25 KB
一键复制 编辑 原始数据 按行查看 历史
始于初见 提交于 2019-09-02 18:04 . 1. 修复打包脚本问题
var path = require('path')
var webpack = require('webpack')
var HtmlWebpackPlugin = require('html-webpack-plugin')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
entry: './src/dev/main.js',
output: {
path: path.resolve(__dirname, './html'),
publicPath: '/',
filename: '[name].[hash:7].js',
},
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)$/,
loader: 'file-loader',
options: {
name: 'images/[name].[ext]?[hash]'
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'fonts/[name].[hash:7].[ext]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
},
extensions: ['*', '.js', '.vue', '.json']
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map',
plugins: [
new HtmlWebpackPlugin({
filename: path.resolve(__dirname, './html/index.html'),
template: path.resolve(__dirname, './src/dev/index.html'),
inject: true
}),
]
}
if (process.env.NODE_ENV === 'production') {
module.exports.output = {
path: path.resolve(__dirname, './html'),
publicPath: './',
filename: '[name].[hash:7].js',
},
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: false,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
}),
])
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/fuli39_admin/vue-bl-markdown-editor.git
git@gitee.com:fuli39_admin/vue-bl-markdown-editor.git
fuli39_admin
vue-bl-markdown-editor
vue-bl-markdown-editor
master

搜索帮助