-
Notifications
You must be signed in to change notification settings - Fork 2
/
quasar.config.js
352 lines (311 loc) · 10.4 KB
/
quasar.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/* eslint-env node */
/*
* This file runs in a Node context (it's NOT transpiled by Babel), so use only
* the ES6 features that are supported by your Node version. https://node.green/
*/
// Configuration for your app
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js
import { configure } from 'quasar/wrappers'
import { readFileSync } from 'node:fs'
import path from 'node:path'
import { mergeConfig } from 'vite'
import { flipFuses, FuseVersion, FuseV1Options } from '@electron/fuses'
export default configure((/* ctx */) => {
const curYear = new Date().getFullYear()
const packageInfo = JSON.parse(readFileSync(new URL('./package.json', import.meta.url)))
return {
// https://v2.quasar.dev/quasar-cli/prefetch-feature
// preFetch: true,
// app boot file (/src/boot)
// --> boot files are part of "main.js"
// https://v2.quasar.dev/quasar-cli/boot-files
boot: [
'eventbus',
'monaco'
],
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css
css: [
'app.scss'
],
// https://github.com/quasarframework/quasar/tree/dev/extras
extras: [
// 'ionicons-v4',
// 'mdi-v5',
// 'fontawesome-v6',
// 'eva-icons',
// 'themify',
// 'line-awesome',
// 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
'roboto-font', // optional, you are not bound to it
'mdi-v7' // optional, you are not bound to it
],
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#build
build: {
target: {
browser: ['es2022', 'chrome128'],
node: 'node20'
},
vueRouterMode: 'history', // available values: 'hash', 'history'
// vueRouterBase,
// vueDevtools,
// vueOptionsAPI: false,
// rebuildCache: true, // rebuilds Vite/linter/etc cache on startup
// publicPath: '/',
// analyze: true,
env: {
APP_VERSION: packageInfo.version,
OS_PLATFORM: process.platform
},
// rawDefine: {}
// ignorePublicFolder: true,
// minify: false,
// polyfillModulePreload: true,
// distDir
extendViteConf (viteConf) {
viteConf.build = mergeConfig(viteConf.build, {
chunkSizeWarningLimit: 9999999,
rollupOptions: {
output: {
manualChunks: (id) => {
if (id.includes('.css') || id.includes('.scss') || id.includes('.sass')) {
return 'app'
}
}
}
}
})
// viteConf.build.rollupOptions = {
// external: ['monaco-editor'],
// output: {
// globals: {
// 'monaco-editor': 'monaco-editor'
// }
// }
// }
}
// viteVuePluginOptions: {},
// vitePlugins: [
// [ 'package-name', { ..options.. } ]
// ]
},
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#devServer
devServer: {
https: true,
open: true // opens browser window automatically
},
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#framework
framework: {
config: {
dark: true,
notify: {
position: 'top',
progress: true,
color: 'positive',
icon: 'mdi-check',
actions: [
{
icon: 'mdi-close',
color: 'white',
size: 'sm',
round: true,
handler: () => {}
}
]
}
},
iconSet: 'mdi-v7', // Quasar icon set
// lang: 'en-US', // Quasar language pack
// For special cases outside of where the auto-import strategy can have an impact
// (like functional components as one of the examples),
// you can manually specify Quasar components/directives to be available everywhere:
//
// components: [],
// directives: [],
// Quasar plugins
plugins: [
'Dialog',
'Loading',
'Notify'
]
},
// animations: 'all', // --- includes all animations
// https://v2.quasar.dev/options/animations
animations: [
'flash',
'fadeIn',
'fadeOut',
'fadeInDown',
'fadeInUp',
'fadeOutDown',
'fadeOutUp',
'slideInDown',
'slideInUp',
'slideOutDown',
'slideOutUp'
],
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#property-sourcefiles
// sourceFiles: {
// rootComponent: 'src/App.vue',
// router: 'src/router/index',
// store: 'src/store/index',
// registerServiceWorker: 'src-pwa/register-service-worker',
// serviceWorker: 'src-pwa/custom-service-worker',
// pwaManifestFile: 'src-pwa/manifest.json',
// electronMain: 'src-electron/electron-main',
// electronPreload: 'src-electron/electron-preload'
// },
// https://v2.quasar.dev/quasar-cli/developing-ssr/configuring-ssr
ssr: {
// ssrPwaHtmlFilename: 'offline.html', // do NOT use index.html as name!
// will mess up SSR
// extendSSRWebserverConf (esbuildConf) {},
// extendPackageJson (json) {},
pwa: false,
// manualStoreHydration: true,
// manualPostHydrationTrigger: true,
prodPort: 3000, // The default port that the production server should use
// (gets superseded if process.env.PORT is specified at runtime)
middlewares: [
'render' // keep this as last one
]
},
// https://v2.quasar.dev/quasar-cli/developing-pwa/configuring-pwa
pwa: {
workboxMode: 'generateSW', // or 'injectManifest'
injectPwaMetaTags: true,
swFilename: 'sw.js',
manifestFilename: 'manifest.json',
useCredentialsForManifestTag: false
// useFilenameHashes: true,
// extendGenerateSWOptions (cfg) {}
// extendInjectManifestOptions (cfg) {},
// extendManifestJson (json) {}
// extendPWACustomSWConf (esbuildConf) {}
},
// Full list of options: https://v2.quasar.dev/quasar-cli/developing-electron-apps/configuring-electron
electron: {
// extendElectronMainConf (esbuildConf)
// extendElectronPreloadConf (esbuildConf)
// Electron preload scripts (if any) from /src-electron, WITHOUT file extension
preloadScripts: ['electron-preload'],
inspectPort: 5858,
bundler: 'builder', // 'packager' or 'builder'
// packager: {
// // https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options
// appCopyright: 'IETF Trust',
// arch: ['x64', 'arm64'],
// // executableName: 'draftforge',
// name: 'ietf-draftforge',
// overwrite: true,
// // platform: ['darwin', 'linux', 'win32'],
// // OS X / Mac App Store
// // appBundleId: '',
// appCategoryType: 'public.app-category.productivity',
// // osxSign: '',
// // protocol: 'myapp://path',
// // Windows only
// win32metadata: {
// CompanyName: 'IETF'
// }
// },
builder: {
// https://www.electron.build/configuration/configuration
appId: 'org.ietf.draftforge',
// eslint-disable-next-line no-template-curly-in-string
artifactName: 'ietf-draftforge-${os}-${arch}-${version}.${ext}',
// executableName: 'draftforge',
copyright: `Copyright © 2023-${curYear} The IETF Trust`,
mac: {
electronLanguages: ['en-US'],
category: 'public.app-category.productivity',
darkModeSupport: true,
hardenedRuntime: true,
gatekeeperAssess: false,
entitlements: 'build/mac/entitlements.mac.plist',
entitlementsInherit: 'build/mac/entitlements.mac.plist',
notarize: true,
target: [
{
target: 'default',
arch: ['x64', 'arm64']
}
],
publish: [
{
provider: 'generic',
url: 'https://github.com/ietf-tools/editor/releases/latest/download/',
publishAutoUpdate: true
}
]
},
dmg: {
sign: false
},
win: {
electronLanguages: ['en-US'],
target: [
{
target: 'nsis',
arch: ['x64', 'arm64']
}
],
publish: [
{
provider: 'generic',
url: 'https://github.com/ietf-tools/editor/releases/latest/download/',
publishAutoUpdate: true
}
]
},
linux: {
electronLanguages: ['en-US'],
category: 'Office',
target: [
{
target: 'deb',
arch: ['x64', 'arm64']
},
{
target: 'rpm',
arch: ['x64', 'arm64']
},
{
target: 'tar.gz',
arch: ['x64', 'arm64']
}
],
publish: [
{
provider: 'generic',
url: 'https://github.com/ietf-tools/editor/releases/latest/download/',
publishAutoUpdate: true
}
]
},
afterPack: async (context) => {
console.info('Flipping electron fuses...')
const ext = {
darwin: '.app',
win32: '.exe',
linux: ''
}[context.electronPlatformName]
const executableName = context.electronPlatformName === 'linux'
? context.packager.appInfo.productFilename.toLowerCase().replace('-dev', '').replace(' ', '-')
: context.packager.appInfo.productFilename
await flipFuses(path.join(context.appOutDir, `${executableName}${ext}`), {
version: FuseVersion.V1,
[FuseV1Options.RunAsNode]: false,
[FuseV1Options.EnableCookieEncryption]: true,
[FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false,
[FuseV1Options.EnableNodeCliInspectArguments]: false,
[FuseV1Options.OnlyLoadAppFromAsar]: true,
[FuseV1Options.LoadBrowserProcessSpecificV8Snapshot]: false,
[FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: false,
resetAdHocDarwinSignature: context.electronPlatformName === 'darwin'
})
console.info('Flipping electron fuses... [ Done ]')
}
}
}
}
})