rooknoob
rooknoob
NNuxt
Created by rooknoob on 3/25/2025 in #❓・help
Nuxt Content 3.4.0 generating 'manifest-route-rule' middleware already exists warnings
Hi everyone! I recently migrated Nuxt Content from v2 and now I'm constantly getting these warnings whenever I save a markdown file: ℹ File work/lining-project.md changed on content collection @nuxt/content 11:43:59 AM [11:43:59 AM] WARN 'manifest-route-rule' middleware already exists at './node_modules/nuxt/dist/app/middleware/manifest-route-rule.js'. You can set override: true to replace it. Sometimes it still updates the generated page, sometimes it doesn't and I'm forced to restart yarn dev to make update—I never found any rhyme or reason as to why that is. Do you have any idea what can be causing this? FWIW, here's my content.config.ts: import { defineCollection, defineContentConfig, z } from "@nuxt/content"; export default defineContentConfig({ collections: { content: defineCollection({ source: "**.md", type: "page", schema: z.object({ tags: z.array(z.string()), preview: z.string(), headline: z.string(), }), }), }, });
22 replies