2020-08-19 12:12:04 +00:00
|
|
|
process.env.VUE_APP_VERSION = process.env.npm_package_version;
|
|
|
|
|
2020-05-16 20:52:50 +00:00
|
|
|
module.exports = {
|
|
|
|
pluginOptions: {
|
|
|
|
i18n: {
|
|
|
|
locale: 'en',
|
|
|
|
fallbackLocale: 'en',
|
|
|
|
localeDir: 'locales',
|
|
|
|
enableInSFC: false
|
2020-06-08 13:40:41 +00:00
|
|
|
},
|
|
|
|
electronBuilder: {
|
2020-09-30 22:59:58 +00:00
|
|
|
builderOptions: {
|
2020-10-16 20:44:46 +00:00
|
|
|
appId: "com.webtools.webtools-ng",
|
|
|
|
artifactName: "${productName}-${version}.${env.AppRev}.${ext}",
|
2020-06-08 13:40:41 +00:00
|
|
|
"extraResources": [
|
|
|
|
{
|
|
|
|
"from": "./public/locales",
|
|
|
|
"to": "locales"
|
2020-10-16 20:44:46 +00:00
|
|
|
},
|
|
|
|
{
|
2020-10-16 22:40:27 +00:00
|
|
|
"from": "./public/version.json",
|
|
|
|
"to": "version.json"
|
2020-06-08 13:40:41 +00:00
|
|
|
}
|
|
|
|
],
|
2020-08-24 11:21:06 +00:00
|
|
|
linux: {
|
2020-08-24 11:40:34 +00:00
|
|
|
category: "Utility",
|
2020-09-30 22:59:58 +00:00
|
|
|
icon: 'src/assets/WebTools-512.png',
|
|
|
|
target: 'AppImage'
|
2020-08-24 11:21:06 +00:00
|
|
|
},
|
|
|
|
win: {
|
|
|
|
icon: 'src/assets/WebTools-512.png'
|
2020-08-19 12:12:04 +00:00
|
|
|
}
|
2020-06-08 13:40:41 +00:00
|
|
|
}
|
2020-05-16 20:52:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|