@dargmuesli/nuxt-vio 12.0.1 → 12.0.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-vio",
3
- "version": "12.0.1",
3
+ "version": "12.0.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dargmuesli/vio.git"
@@ -40,10 +40,10 @@
40
40
  "@http-util/status-i18n": "0.8.1",
41
41
  "@intlify/eslint-plugin-vue-i18n": "3.0.0-next.12",
42
42
  "@nuxt/devtools": "1.3.1",
43
- "@nuxt/eslint": "0.3.12",
43
+ "@nuxt/eslint": "0.3.13",
44
44
  "@nuxt/image": "1.7.0",
45
45
  "@nuxtjs/color-mode": "3.4.1",
46
- "@nuxtjs/html-validator": "1.8.1",
46
+ "@nuxtjs/html-validator": "1.8.2",
47
47
  "@nuxtjs/i18n": "8.3.0",
48
48
  "@nuxtjs/seo": "2.0.0-rc.10",
49
49
  "@nuxtjs/tailwindcss": "6.12.0",
@@ -56,14 +56,14 @@
56
56
  "@vuelidate/validators": "2.0.4",
57
57
  "clipboardy": "4.0.0",
58
58
  "dayjs": "2.0.0-alpha.4",
59
- "eslint": "9.2.0",
59
+ "eslint": "9.3.0",
60
60
  "eslint-config-prettier": "9.1.0",
61
61
  "eslint-plugin-compat": "4.2.0",
62
62
  "eslint-plugin-prettier": "5.1.3",
63
63
  "eslint-plugin-yml": "1.14.0",
64
64
  "globals": "15.2.0",
65
65
  "jose": "5.3.0",
66
- "nuxt-gtag": "2.0.5",
66
+ "nuxt-gtag": "2.0.6",
67
67
  "nuxt-security": "1.4.3",
68
68
  "sweetalert2": "11.11.0"
69
69
  },
@@ -76,6 +76,9 @@ export default defineConfig({
76
76
  /* Base URL to use in actions like `await page.goto('/')`. */
77
77
  baseURL: SITE_URL,
78
78
 
79
+ // TODO: remove once tests run without it
80
+ ignoreHTTPSErrors: true,
81
+
79
82
  /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
80
83
  trace: 'on-first-retry',
81
84
  },
@@ -86,6 +89,7 @@ export default defineConfig({
86
89
  env: {
87
90
  NUXT_PUBLIC_VIO_IS_TESTING: 'true',
88
91
  },
92
+ ignoreHTTPSErrors: true, // TODO: remove once tests run without it
89
93
  timeout: process.env.NODE_ENV === 'production' ? 10000 : 100000,
90
94
  url: SITE_URL,
91
95
  reuseExistingServer: !process.env.CI,
@@ -6,10 +6,7 @@ export const SITE_NAME = 'Vio'
6
6
  export const SITE_URL =
7
7
  process.env.SITE_URL ||
8
8
  process.env.NUXT_PUBLIC_SITE_URL ||
9
- (process.env.HOST ? 'https' : 'http') +
10
- '://' +
11
- (process.env.HOST ||
12
- `${process.env.HOST || 'localhost'}:${process.env.PORT || '3000'}`)
9
+ `https://${process.env.HOST || 'localhost'}:${process.env.PORT || '3000'}`
13
10
  export const CACHE_VERSION = 'bOXMwoKlJr'
14
11
  export const COOKIE_PREFIX = SITE_NAME.toLocaleLowerCase()
15
12
  export const COOKIE_SEPARATOR = '_'