Skip to content

Commit 9873693

Browse files
author
robotism
committed
update
1 parent cfa8bff commit 9873693

File tree

6 files changed

+4668
-5167
lines changed

6 files changed

+4668
-5167
lines changed

.vscode/settings.json

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,21 @@
6161
},
6262
"prettier.semi": true,
6363
"prettier.tabWidth": 2,
64-
"prettier.useTabs": false
65-
}
64+
"prettier.useTabs": false,
65+
"files.associations": {
66+
"*.css": "tailwindcss"
67+
},
68+
"editor.quickSuggestions": {
69+
"strings": "on"
70+
},
71+
"tailwindCSS.classAttributes": [
72+
"class",
73+
"ui"
74+
],
75+
"tailwindCSS.experimental.classRegex": [
76+
[
77+
"ui:\\s*{([^)]*)\\s*}",
78+
"(?:'|\"|`)([^']*)(?:'|\"|`)"
79+
]
80+
]
81+
}

nuxt.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ import appconfig from "./site.config";
55
import tailwindcss from "@tailwindcss/vite";
66

77
export default defineNuxtConfig({
8-
compatibilityDate: "2025-02-19",
8+
compatibilityDate: "2025-03-29",
9+
srcDir: "src/",
10+
routeRules: {
11+
"/": { prerender: true },
12+
},
913
devtools: {
1014
enabled: true,
1115
timeline: {
@@ -42,10 +46,6 @@ export default defineNuxtConfig({
4246
"@nuxt/icon",
4347
"@nuxt/fonts",
4448
],
45-
srcDir: "src/",
46-
routeRules: {
47-
"/": { prerender: true },
48-
},
4949
site: {
5050
url: appconfig.site.url,
5151
},
@@ -139,4 +139,4 @@ export default defineNuxtConfig({
139139
},
140140
},
141141
content: {},
142-
});
142+
});

0 commit comments

Comments
 (0)