420 Star 920 Fork 880

dgiot开源社区 / dgiot-mqtt2eventbus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.99 KB
一键复制 编辑 原始数据 按行查看 历史
h7ml 提交于 2021-09-17 11:40 . :bookmark:
const path = require('path')
const webpack = require('webpack')
const NODE_ENV = process.env.NODE_ENV
module.exports = {
// entry: './src/main.js',
// output: {
// path: path.resolve(__dirname, './dist'),
// publicPath: '/dist/',
// filename: 'build.js'
// },
entry:NODE_ENV=='development' ?'./src/main.js':'./index.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'dgiot-mqtt-dashboard.js',
library:'dgiot-mqtt-dashboard',
libraryTarget: 'umd',
umdNamedDefine: true,
},
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|svg|ttf|woff|woff2)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
limit: 99999
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map'
}
if (process.env.NODE_ENV === 'production') {
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
})
])
}else{
module.exports.devtool = '#eval-source-map'
}
1
https://gitee.com/dgiiot/dgiot-mqtt2eventbus.git
git@gitee.com:dgiiot/dgiot-mqtt2eventbus.git
dgiiot
dgiot-mqtt2eventbus
dgiot-mqtt2eventbus
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891