@dargmuesli/nuxt-vio 13.1.18 → 13.1.19
Sign up to get free protection for your applications and to get access to all the features.
@@ -26,7 +26,7 @@
|
|
26
26
|
</li>
|
27
27
|
</ul>
|
28
28
|
<span>{{ t('separator') }}</span>
|
29
|
-
<VioLink :is-colored="false" to="
|
29
|
+
<VioLink :is-colored="false" :to="route.fullPath">
|
30
30
|
<span
|
31
31
|
class="whitespace-nowrap text-2xl font-bold"
|
32
32
|
data-testid="breadcrumb"
|
@@ -71,6 +71,7 @@ withDefaults(defineProps<Props>(), {
|
|
71
71
|
|
72
72
|
const localePath = useLocalePath()
|
73
73
|
const { t } = useI18n()
|
74
|
+
const route = useRoute()
|
74
75
|
</script>
|
75
76
|
|
76
77
|
<i18n lang="yaml">
|
package/package.json
CHANGED
@@ -31,7 +31,7 @@
|
|
31
31
|
"jose": "5.6.3",
|
32
32
|
"nuxt-gtag": "2.0.6",
|
33
33
|
"nuxt-security": "2.0.0-rc.9",
|
34
|
-
"sweetalert2": "11.12.
|
34
|
+
"sweetalert2": "11.12.2",
|
35
35
|
"vue-tsc": "2.0.26"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
@@ -116,5 +116,5 @@
|
|
116
116
|
"start:static": "serve .playground/.output/public --ssl-cert ./.config/certificates/ssl.crt --ssl-key ./.config/certificates/ssl.key"
|
117
117
|
},
|
118
118
|
"type": "module",
|
119
|
-
"version": "13.1.
|
119
|
+
"version": "13.1.19"
|
120
120
|
}
|
package/utils/constants.ts
CHANGED
@@ -101,7 +101,7 @@ export const GET_CSP = (siteUrl: string) =>
|
|
101
101
|
...(process.env.NODE_ENV === 'development'
|
102
102
|
? {
|
103
103
|
'frame-src':
|
104
|
-
'
|
104
|
+
'https://localhost:3000/__nuxt_devtools__/client/modules/pinia',
|
105
105
|
}
|
106
106
|
: {}),
|
107
107
|
'connect-src': [
|