-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvue.config.js
60 lines (57 loc) · 1.68 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")
const { defineConfig } = require('@vue/cli-service')
const webpackObfuscator = require('webpack-obfuscator');
const isProduction = process.env.NODE_ENV === 'production'
module.exports = defineConfig({
publicPath: isProduction ? './' : '/',
productionSourceMap: false,
configureWebpack: isProduction ? {
resolve: {
fallback: {
"fs": false,
}
},
plugins: [
new NodePolyfillPlugin(),
new webpackObfuscator({
rotateStringArray: true,
}, [])
]
} : {},
// chainWebpack: webpackConfig => {
// },
transpileDependencies: [/\bvue-awesome\b/],
pluginOptions: {
// Use this to change the entry point of your app's render process. default src/[main|index].[js|ts]
rendererProcessFile: 'src/[background|on|mainProcess].ts',
electronBuilder: {
nodeIntegration: true,
preload: 'src/preload.ts',
builderOptions: {
extraResources: ['src', 'src/res/'],
productName: '便利贴',
appId: '202274',
copyright: 'zmy',
compression: 'store',
asar: true,
win: {
icon: 'public/img/logo',
target: ['nsis', 'zip']
},
nsis: {
oneClick: false,
perMachine: true,
allowElevation: true,
allowToChangeInstallationDirectory: true, // 允许修改安装目录
createDesktopShortcut: true, // 创建桌面图标
createStartMenuShortcut: true, // 创建开始菜单图标
shortcutName: '便利贴' // 图标名称
}
},
// externals: ['knex', 'sqlite3'],
},
},
devServer: {
port: 55226
}
})