news-analyze/nuxt.config.ts
吳元皓 330c92a432 chore: update nuxt configuration and add new modules
- Changed compatibility date to '2025-05-06'.
- Added '@nuxtjs/robots' and '@nuxtjs/seo' modules.
- Updated package.json to include new dependencies for robots and SEO modules.
- Removed existing robots.txt file and created a new _robots.txt file.
- Created empty footer and navigation components.
- Added default layout structure with navigation, main content, and footer.
2025-05-06 09:29:13 +08:00

9 lines
178 B
TypeScript

export default defineNuxtConfig({
compatibilityDate: '2025-05-06',
devtools: { enabled: true },
modules: [
'@nuxt/image',
'@nuxtjs/robots',
'@nuxtjs/seo'
]
})