@d-mok/quasar-app-extension-quasar-axe 3.1.6 → 3.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +5 -5
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
function extendQuasarConf(conf, prompts) {
|
|
2
2
|
for (let b of ['AutoRoute', 'AutoReg', 'Interceptor', 'SetPrimaryColor'])
|
|
3
3
|
conf.boot.unshift(`axe/${b}`)
|
|
4
|
-
console.log('[QuasarAxe] Config pushed Boots')
|
|
4
|
+
// console.log('[QuasarAxe] Config pushed Boots')
|
|
5
5
|
conf.boot.unshift('axe/LoadStart')
|
|
6
6
|
conf.boot.push('axe/LoadEnd')
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ function extendQuasarConf(conf, prompts) {
|
|
|
11
11
|
'Dialog',
|
|
12
12
|
'LoadingBar'
|
|
13
13
|
)
|
|
14
|
-
console.log('[QuasarAxe] Config pushed framework.plugins')
|
|
14
|
+
// console.log('[QuasarAxe] Config pushed framework.plugins')
|
|
15
15
|
|
|
16
16
|
conf.framework.config.loadingBar = {
|
|
17
17
|
position: 'top',
|
|
@@ -20,10 +20,10 @@ function extendQuasarConf(conf, prompts) {
|
|
|
20
20
|
skipHijack: true,
|
|
21
21
|
}
|
|
22
22
|
conf.framework.config.notify = {}
|
|
23
|
-
console.log('[QuasarAxe] Config pushed framework.config')
|
|
23
|
+
// console.log('[QuasarAxe] Config pushed framework.config')
|
|
24
24
|
|
|
25
25
|
conf.animations.push('fadeIn', 'fadeOut', 'zoomIn', 'zoomOut')
|
|
26
|
-
console.log('[QuasarAxe] Config pushed animations')
|
|
26
|
+
// console.log('[QuasarAxe] Config pushed animations')
|
|
27
27
|
|
|
28
28
|
conf.build.viteVuePluginOptions = {
|
|
29
29
|
script: {
|
|
@@ -31,7 +31,7 @@ function extendQuasarConf(conf, prompts) {
|
|
|
31
31
|
propsDestructure: true,
|
|
32
32
|
},
|
|
33
33
|
}
|
|
34
|
-
console.log('[QuasarAxe] Config pushed viteVuePluginOptions')
|
|
34
|
+
// console.log('[QuasarAxe] Config pushed viteVuePluginOptions')
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
module.exports = function (api) {
|