@dargmuesli/nuxt-vio 3.0.0-beta.3 → 3.0.0-beta.4
Sign up to get free protection for your applications and to get access to all the features.
- package/nuxt.config.ts +5 -2
- package/package.json +2 -1
package/nuxt.config.ts
CHANGED
@@ -23,8 +23,9 @@ const BASE_URL =
|
|
23
23
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
24
24
|
export default defineNuxtConfig({
|
25
25
|
alias: {
|
26
|
-
|
27
|
-
|
26
|
+
dayjs: 'dayjs',
|
27
|
+
sweetalert2: 'sweetalert2',
|
28
|
+
}, // TODO: remove (https://github.com/nuxt/nuxt/issues/19426)
|
28
29
|
app: {
|
29
30
|
head: {
|
30
31
|
htmlAttrs: {
|
@@ -45,6 +46,7 @@ export default defineNuxtConfig({
|
|
45
46
|
},
|
46
47
|
modules: [
|
47
48
|
'@dargmuesli/nuxt-cookie-control',
|
49
|
+
'@nuxt/image',
|
48
50
|
'@nuxtjs/color-mode',
|
49
51
|
'@nuxtjs/html-validator',
|
50
52
|
'@nuxtjs/i18n',
|
@@ -149,6 +151,7 @@ export default defineNuxtConfig({
|
|
149
151
|
},
|
150
152
|
},
|
151
153
|
linkChecker: {
|
154
|
+
debug: process.env.NODE_ENV === 'development',
|
152
155
|
failOnError: true,
|
153
156
|
},
|
154
157
|
seoKit: {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "3.0.0-beta.
|
3
|
+
"version": "3.0.0-beta.4",
|
4
4
|
"type": "module",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -44,6 +44,7 @@
|
|
44
44
|
"dependencies": {
|
45
45
|
"@dargmuesli/nuxt-cookie-control": "6.1.5",
|
46
46
|
"@http-util/status-i18n": "0.7.0",
|
47
|
+
"@nuxt/image": "1.0.0-rc.1",
|
47
48
|
"@nuxtjs/color-mode": "3.3.0",
|
48
49
|
"@nuxtjs/html-validator": "1.5.2",
|
49
50
|
"@nuxtjs/i18n": "8.0.0-rc.2",
|