@dargmuesli/nuxt-vio 1.15.0 → 1.16.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/nuxt.config.ts +6 -1
- package/package.json +1 -1
package/nuxt.config.ts
CHANGED
|
@@ -107,7 +107,9 @@ export default defineNuxtConfig({
|
|
|
107
107
|
i18n: {
|
|
108
108
|
...I18N_MODULE_CONFIG,
|
|
109
109
|
defaultLocale: 'en', // Must be set for the default prefix_except_default prefix strategy.
|
|
110
|
-
detectBrowserLanguage:
|
|
110
|
+
detectBrowserLanguage: {
|
|
111
|
+
cookieSecure: true,
|
|
112
|
+
},
|
|
111
113
|
},
|
|
112
114
|
linkChecker: {
|
|
113
115
|
failOnError: false, // TODO: enable (https://github.com/harlan-zw/nuxt-seo-kit/issues/4#issuecomment-1434522124)
|
|
@@ -120,6 +122,9 @@ export default defineNuxtConfig({
|
|
|
120
122
|
name: SITE_NAME,
|
|
121
123
|
url: BASE_URL,
|
|
122
124
|
},
|
|
125
|
+
sitemap: {
|
|
126
|
+
exclude: ['/api/**'],
|
|
127
|
+
},
|
|
123
128
|
tailwindcss: {
|
|
124
129
|
cssPath: join(currentDir, './assets/css/tailwind.css'),
|
|
125
130
|
},
|