@dargmuesli/nuxt-vio 20.6.1 → 20.6.3
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/node/static/index.ts +6 -0
- package/package.json +7 -7
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export const IS_IN_PRODUCTION = process.env.NODE_ENV === 'production'
|
|
2
|
+
export const IS_IN_STACK = !!process.env.NUXT_PUBLIC_SITE_URL
|
|
3
|
+
|
|
4
|
+
export const SITE_URL =
|
|
5
|
+
process.env.NUXT_PUBLIC_SITE_URL ||
|
|
6
|
+
`https://${process.env.HOST || 'localhost'}:${process.env.PORT || '3000'}`
|
package/package.json
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
"@http-util/status-i18n": "0.9.0",
|
|
8
8
|
"@intlify/eslint-plugin-vue-i18n": "4.1.1",
|
|
9
9
|
"@nuxt/devtools": "3.1.1",
|
|
10
|
-
"@nuxt/eslint": "1.
|
|
10
|
+
"@nuxt/eslint": "1.14.0",
|
|
11
11
|
"@nuxt/image": "2.0.0",
|
|
12
12
|
"@nuxtjs/color-mode": "4.0.0",
|
|
13
13
|
"@nuxtjs/html-validator": "2.1.0",
|
|
14
|
-
"@nuxtjs/i18n": "10.2.
|
|
14
|
+
"@nuxtjs/i18n": "10.2.3",
|
|
15
15
|
"@nuxtjs/seo": "3.4.0",
|
|
16
16
|
"@pinia/nuxt": "0.11.3",
|
|
17
17
|
"@tailwindcss/forms": "0.5.11",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"eslint-config-prettier": "10.1.8",
|
|
32
32
|
"eslint-plugin-compat": "6.1.0",
|
|
33
33
|
"eslint-plugin-prettier": "5.5.5",
|
|
34
|
-
"eslint-plugin-yml": "3.
|
|
34
|
+
"eslint-plugin-yml": "3.1.2",
|
|
35
35
|
"globals": "17.3.0",
|
|
36
36
|
"jiti": "2.6.1",
|
|
37
37
|
"jose": "6.1.3",
|
|
38
38
|
"lucide-vue-next": "0.563.0",
|
|
39
|
-
"nodemailer": "8.0.
|
|
39
|
+
"nodemailer": "8.0.1",
|
|
40
40
|
"nuxt-gtag": "4.1.0",
|
|
41
41
|
"nuxt-security": "2.5.1",
|
|
42
42
|
"reka-ui": "2.8.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"vue-tsc": "3.2.4"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "24.10.
|
|
50
|
+
"@types/node": "24.10.12",
|
|
51
51
|
"@urql/devtools": "2.0.3",
|
|
52
52
|
"@urql/exchange-graphcache": "9.0.0",
|
|
53
53
|
"@vueuse/core": "14.2.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"i18n",
|
|
79
79
|
"server",
|
|
80
80
|
"shared",
|
|
81
|
-
"node
|
|
81
|
+
"node",
|
|
82
82
|
"nuxt.config.ts",
|
|
83
83
|
"package.json"
|
|
84
84
|
],
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"start:static": "node scripts/server/static.mjs"
|
|
118
118
|
},
|
|
119
119
|
"type": "module",
|
|
120
|
-
"version": "20.6.
|
|
120
|
+
"version": "20.6.3"
|
|
121
121
|
}
|