@dargmuesli/nuxt-vio 13.1.11 → 13.1.13
Sign up to get free protection for your applications and to get access to all the features.
- package/nuxt.config.ts +10 -6
- package/package.json +1 -1
- package/types/fetch.d.ts +5 -0
package/nuxt.config.ts
CHANGED
@@ -29,12 +29,16 @@ export default defineNuxtConfig(
|
|
29
29
|
name: 'layout',
|
30
30
|
},
|
31
31
|
},
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
32
|
+
...(process.env.NUXT_PUBLIC_SITE_URL
|
33
|
+
? {}
|
34
|
+
: {
|
35
|
+
devServer: {
|
36
|
+
https: {
|
37
|
+
key: './.config/certificates/ssl.key',
|
38
|
+
cert: './.config/certificates/ssl.crt',
|
39
|
+
},
|
40
|
+
},
|
41
|
+
}),
|
38
42
|
devtools: {
|
39
43
|
timeline: {
|
40
44
|
enabled: true,
|
package/package.json
CHANGED