We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e87fc commit 2d81ab2Copy full SHA for 2d81ab2
2 files changed
app/assets/icons/fabric.svg
nuxt.config.ts
@@ -179,12 +179,26 @@ export default defineNuxtConfig({
179
},
180
181
182
+ icon: {
183
+ customCollections: [
184
+ {
185
+ prefix: "custom",
186
+ dir: "./app/assets/icons",
187
+ },
188
+ ],
189
190
+
191
content: {
192
experimental: {
193
sqliteConnector: "native",
194
195
196
197
+ vitalizer: {
198
+ disableStylesheets: true,
199
200
201
+ // @ts-expect-error: nuxt-security module is disabled in dev mode which results in missing types
202
security: {
203
// TODO: check why it causes payload errors if enabled
204
ssg: false,
@@ -214,9 +228,4 @@ export default defineNuxtConfig({
214
228
215
229
216
230
217
-
218
- vitalizer: {
219
- // disablePreloadLinks: true,
220
- disableStylesheets: true,
221
- },
222
231
})
0 commit comments