1 Star 0 Fork 119

swing小哥 / vue-monoplasty-slide-verify

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
yuqian 提交于 2019-12-13 17:53 . update online demo
var path = require('path')
var webpack = require('webpack')
module.exports = {
// entry: './src/lib/index.js',
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'slide-verify.js',
library: 'SlideVerify',
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)$/,
use: [
{ loader: 'url-loader',
options: {
limit: '8192',
name: 'imgs/[name].[hash].[ext]',
publicPath: './dist/'
}}
],
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
},
devServer: {
host: '0.0.0.0',
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
})
])
}
JavaScript
1
https://gitee.com/alvin_swing/vue-monoplasty-slide-verify.git
git@gitee.com:alvin_swing/vue-monoplasty-slide-verify.git
alvin_swing
vue-monoplasty-slide-verify
vue-monoplasty-slide-verify
master

搜索帮助