@dargmuesli/nuxt-vio 10.2.0 → 10.2.1
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
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.2.
|
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",
|
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
|