@dargmuesli/nuxt-vio 1.10.11 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div :data-is-loading="isLoading">
2
+ <div :data-is-loading="isLoading" data-testid="is-loading">
3
3
  <NuxtLayout>
4
4
  <SeoKit :site-description="siteDescription" :language="locale" />
5
5
  <OgImageStatic :alt="ogImageAlt" component="OgImage" />
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'}:3000`)
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.10.11",
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.2",
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.1",
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-28113576.7bc33c3",
44
- "@nuxtjs/tailwindcss": "6.7.2",
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.0"
69
+ "vue-tsc": "1.8.1"
70
70
  }
71
71
  }