@dargmuesli/nuxt-vio 1.10.11 → 1.11.0
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/components/VioApp.vue +1 -1
- package/nuxt.config.ts +5 -1
- package/package.json +6 -6
package/components/VioApp.vue
CHANGED
package/nuxt.config.ts
CHANGED
|
@@ -8,7 +8,11 @@ const currentDir = dirname(fileURLToPath(import.meta.url))
|
|
|
8
8
|
const BASE_URL =
|
|
9
9
|
'https://' +
|
|
10
10
|
(process.env.NUXT_PUBLIC_STACK_DOMAIN ||
|
|
11
|
-
`${process.env.HOST || 'localhost'}
|
|
11
|
+
`${process.env.HOST || 'localhost'}:${
|
|
12
|
+
!process.env.NODE_ENV || process.env.NODE_ENV === 'development'
|
|
13
|
+
? '3000'
|
|
14
|
+
: '3001'
|
|
15
|
+
}`)
|
|
12
16
|
|
|
13
17
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
14
18
|
export default defineNuxtConfig({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"engines": {
|
|
9
9
|
"node": "20"
|
|
10
10
|
},
|
|
11
|
-
"packageManager": "pnpm@8.6.
|
|
11
|
+
"packageManager": "pnpm@8.6.3",
|
|
12
12
|
"files": [
|
|
13
13
|
"assets",
|
|
14
14
|
"components",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"lint:ts": "nuxt typecheck"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@dargmuesli/nuxt-cookie-control": "5.10.
|
|
40
|
+
"@dargmuesli/nuxt-cookie-control": "5.10.2",
|
|
41
41
|
"@http-util/status-i18n": "0.7.0",
|
|
42
42
|
"@nuxtjs/html-validator": "1.4.0",
|
|
43
|
-
"@nuxtjs/i18n": "npm:@nuxtjs/i18n-edge@8.0.0-beta.12-
|
|
44
|
-
"@nuxtjs/tailwindcss": "6.
|
|
43
|
+
"@nuxtjs/i18n": "npm:@nuxtjs/i18n-edge@8.0.0-beta.12-28122654.89ddb67",
|
|
44
|
+
"@nuxtjs/tailwindcss": "6.8.0",
|
|
45
45
|
"@tailwindcss/typography": "0.5.9",
|
|
46
46
|
"nuxt-seo-kit": "1.3.8",
|
|
47
47
|
"sweetalert2": "11.7.12",
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"stylelint-config-standard": "33.0.0",
|
|
67
67
|
"stylelint-no-unsupported-browser-features": "6.1.0",
|
|
68
68
|
"typescript": "5.1.3",
|
|
69
|
-
"vue-tsc": "1.8.
|
|
69
|
+
"vue-tsc": "1.8.1"
|
|
70
70
|
}
|
|
71
71
|
}
|