代码拉取完成,页面将自动刷新
同步操作将从 CcSimple/vue-plugin-hiprint 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const path = require('path')
const webpack = require('webpack')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
'vue-plugin-hiprint.js': './src/index.js',
},
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: '[name]',
library: 'vue-plugin-hiprint',
libraryTarget: "umd",
// libraryTarget: "commonjs2",
umdNamedDefine: true
},
plugins: [
new webpack.ProvidePlugin({
jQuery: "jquery",
$: "jquery"
}),
new CopyPlugin([
{ from: './src/hiprint/css/print-lock.css', to: '' },
]),
],
externals: {
jquery: {
commonjs: "jquery",
commonjs2: "jquery",
amd: "jquery",
root: "jQuery",
},
"@claviska/jquery-minicolors": "@claviska/jquery-minicolors",
jsbarcode: {
commonjs: "jsbarcode",
commonjs2: "jsbarcode",
amd: "jsbarcode",
root: "JsBarcode",
},
"socket.io-client": {
commonjs: "socket.io-client",
commonjs2: "socket.io-client",
amd: "socket.io-client",
root: "io",
},
html2canvas: "html2canvas",
canvg: 'canvg',
jspdf: "jspdf",
},
optimization:{
minimizer:[
new UglifyJsPlugin({
sourceMap: true, //方便使用是查看具体错误位置
parallel: true, //使用多进程并行运行来提高构建速度
uglifyOptions: {
output: {
comments: false
},
compress: {
drop_debugger: true,
drop_console: 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)$/,
loader: 'url-loader',
options: {
name: '[name].[ext]'
}
}
]
},
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 = 'cheap-module-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.LoaderOptionsPlugin({
minimize: true
})
])
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。