@dargmuesli/nuxt-vio 10.1.0 → 10.2.1
Sign up to get free protection for your applications and to get access to all the features.
package/nuxt.config.ts
CHANGED
@@ -46,8 +46,8 @@ export default defineNuxtConfig(
|
|
46
46
|
'@nuxtjs/color-mode',
|
47
47
|
'@nuxtjs/html-validator',
|
48
48
|
'@nuxtjs/i18n',
|
49
|
+
'@nuxtjs/seo',
|
49
50
|
'@nuxtjs/tailwindcss',
|
50
|
-
'@nuxtseo/module',
|
51
51
|
'@pinia/nuxt',
|
52
52
|
// nuxt-security: remove invalid `'none'`s and duplicates
|
53
53
|
(_options, nuxt) => {
|
@@ -170,11 +170,6 @@ export default defineNuxtConfig(
|
|
170
170
|
linkChecker: {
|
171
171
|
failOnError: true,
|
172
172
|
},
|
173
|
-
ogImage: {
|
174
|
-
defaults: {
|
175
|
-
extension: 'png', // TODO: remove once og-image requires jpg opt-in
|
176
|
-
},
|
177
|
-
},
|
178
173
|
robots: {
|
179
174
|
credits: false,
|
180
175
|
},
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "10.1
|
3
|
+
"version": "10.2.1",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+https://github.com/dargmuesli/vio.git"
|
@@ -42,8 +42,8 @@
|
|
42
42
|
"@nuxtjs/color-mode": "3.3.2",
|
43
43
|
"@nuxtjs/html-validator": "1.6.0",
|
44
44
|
"@nuxtjs/i18n": "8.0.0",
|
45
|
+
"@nuxtjs/seo": "2.0.0-rc.4",
|
45
46
|
"@nuxtjs/tailwindcss": "6.10.3",
|
46
|
-
"@nuxtseo/module": "2.0.0-beta.55",
|
47
47
|
"@pinia/nuxt": "0.5.1",
|
48
48
|
"@tailwindcss/forms": "0.5.7",
|
49
49
|
"@tailwindcss/typography": "0.5.10",
|
@@ -84,7 +84,7 @@
|
|
84
84
|
"nuxt": "3.9.1",
|
85
85
|
"pinia": "2.1.7",
|
86
86
|
"prettier": "3.1.1",
|
87
|
-
"prettier-plugin-tailwindcss": "0.5.
|
87
|
+
"prettier-plugin-tailwindcss": "0.5.11",
|
88
88
|
"serve": "14.2.1",
|
89
89
|
"stylelint": "16.1.0",
|
90
90
|
"stylelint-config-recommended-vue": "1.5.0",
|
package/tailwind.config.ts
CHANGED
@@ -51,7 +51,7 @@ export default {
|
|
51
51
|
cursor: theme('cursor.not-allowed'),
|
52
52
|
opacity: theme('opacity.50'),
|
53
53
|
},
|
54
|
-
'a[target="_blank"]:after': {
|
54
|
+
'a[target="_blank"]:not([is-external-icon-disabled]):after': {
|
55
55
|
backgroundColor: 'currentColor',
|
56
56
|
content: '""',
|
57
57
|
display: 'inline-table', // inline-table centers the element vertically in the tiptap text area, instead of inline-block
|
package/utils/text.ts
CHANGED
@@ -1,3 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
export const copyText = async (text: string) => await clipboard.write(text)
|
1
|
+
export const copyText = async (text: string) =>
|
2
|
+
(await import('clipboardy')).default.write(text)
|
File without changes
|