You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.0 KiB
94 lines
2.0 KiB
var path = require('path')
|
|
var webpack = require('webpack')
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
|
|
const NODE_ENV = process.env.NODE_ENV
|
|
|
|
module.exports = {
|
|
entry: NODE_ENV == 'development' ? ['./src/main.js'] : ['./src/index.js'],
|
|
output: {
|
|
path: path.resolve(__dirname, './dist'),
|
|
publicPath: '/dist/',
|
|
filename: 'vue-qr.js',
|
|
library: 'vue-qr',
|
|
libraryTarget: 'umd',
|
|
umdNamedDefine: true,
|
|
globalObject: 'this',
|
|
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.css$/,
|
|
use: [
|
|
'vue-style-loader',
|
|
'css-loader'
|
|
],
|
|
}, {
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader',
|
|
options: {
|
|
loaders: {
|
|
}
|
|
// other vue-loader options go here
|
|
}
|
|
},
|
|
{
|
|
test: /\.worker\.js$/,
|
|
loader: 'worker-loader',
|
|
options: { inline: 'no-fallback' }
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg)$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: '[name].[ext]?[hash]'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
// make sure to include the plugin for the magic
|
|
new VueLoaderPlugin()
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'vue$': 'vue/dist/vue.esm.js'
|
|
},
|
|
extensions: ['*', '.js', '.vue', '.json']
|
|
},
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
noInfo: true,
|
|
overlay: true,
|
|
port: 5555
|
|
},
|
|
performance: {
|
|
hints: false
|
|
},
|
|
devtool: '#eval-source-map'
|
|
}
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports.devtool = '#source-map'
|
|
module.exports.optimization = {
|
|
minimize: true
|
|
}
|
|
// 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.LoaderOptionsPlugin({
|
|
minimize: true
|
|
})
|
|
])
|
|
}
|