-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquasar.config.js
90 lines (74 loc) · 1.8 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
/* 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
const { configure } = require('quasar/wrappers');
module.exports = configure(function (/* ctx */) {
return {
boot: [
'axios',
],
css: [
'app.sass'
],
extras: [
'roboto-font', // optional, you are not bound to it
'material-icons', // optional, you are not bound to it
],
build: {
target: {
browser: [ 'es2019', 'edge88', 'firefox78', 'chrome87', 'safari13.1' ],
node: 'node16'
},
vueRouterMode: 'history', // available values: 'hash', 'history'
//vueDevtools,
},
devServer: {
// https: true
host:['localhost', '192.168.10.111'],
port: 8484,
open: false // opens browser window automatically
},
framework: {
config: {},
plugins: []
},
animations: [],
ssr: {
pwa: false,
prodPort: 3000, // The default port that the production server should use
middlewares: [
'render' // keep this as last one
]
},
pwa: {
workboxMode: 'generateSW', // or 'injectManifest'
injectPwaMetaTags: true,
swFilename: 'sw.js',
manifestFilename: 'manifest.json',
useCredentialsForManifestTag: false,
},
cordova: {
},
capacitor: {
hideSplashscreen: true
},
electron: {
inspectPort: 5858,
bundler: 'packager', // 'packager' or 'builder'
packager: {
},
builder: {
appId: 'bestkeystonev3'
}
},
bex: {
contentScripts: [
'my-content-script'
],
}
}
});