nuxtseo-layer-devtools 0.4.2 → 0.4.4
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/assets/css/global.css
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
@import "tailwindcss";
|
|
2
2
|
@import "@nuxt/ui";
|
|
3
3
|
|
|
4
|
+
@font-face {
|
|
5
|
+
font-family: 'Hubot Sans';
|
|
6
|
+
src: url('../fonts/hubot-sans.woff2') format('woff2');
|
|
7
|
+
font-weight: 100 900;
|
|
8
|
+
font-display: swap;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: 'Fira Code';
|
|
14
|
+
src: url('../fonts/fira-code.woff2') format('woff2');
|
|
15
|
+
font-weight: 100 900;
|
|
16
|
+
font-display: swap;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
}
|
|
19
|
+
|
|
4
20
|
@theme {
|
|
5
21
|
--font-sans: 'Hubot Sans', ui-sans-serif, system-ui, sans-serif;
|
|
6
22
|
--font-mono: 'Fira Code', ui-monospace, monospace;
|
package/nuxt.config.ts
CHANGED
|
@@ -6,7 +6,6 @@ export default defineNuxtConfig({
|
|
|
6
6
|
ssr: false,
|
|
7
7
|
|
|
8
8
|
modules: [
|
|
9
|
-
'@nuxt/fonts',
|
|
10
9
|
'@nuxt/ui',
|
|
11
10
|
'@vueuse/nuxt',
|
|
12
11
|
],
|
|
@@ -17,17 +16,6 @@ export default defineNuxtConfig({
|
|
|
17
16
|
content: false,
|
|
18
17
|
sitemap: false,
|
|
19
18
|
|
|
20
|
-
fonts: {
|
|
21
|
-
provider: 'local',
|
|
22
|
-
defaults: {
|
|
23
|
-
weights: ['100 900'],
|
|
24
|
-
},
|
|
25
|
-
families: [
|
|
26
|
-
{ name: 'Hubot Sans' },
|
|
27
|
-
{ name: 'Fira Code' },
|
|
28
|
-
],
|
|
29
|
-
},
|
|
30
|
-
|
|
31
19
|
vite: {
|
|
32
20
|
optimizeDeps: {
|
|
33
21
|
include: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxtseo-layer-devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.4",
|
|
5
5
|
"description": "Shared Nuxt layer for Nuxt SEO devtools clients.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@nuxt/devtools-kit": "4.0.0-alpha.3",
|
|
32
|
-
"@nuxt/fonts": "^0.14.0",
|
|
33
32
|
"@nuxt/kit": "^4.4.2",
|
|
34
33
|
"@nuxt/ui": "^4.6.0",
|
|
35
34
|
"@shikijs/langs": "^4.0.2",
|
|
File without changes
|
|
File without changes
|