import { fileURLToPath } from 'node:url' import { dirname, join } from 'node:path' const currentDir = dirname(fileURLToPath(import.meta.url)) export default defineNuxtConfig({ modules: [ '@vueuse/nuxt', '@nuxtjs/tailwindcss', '@nuxt/content', '@nuxtjs/color-mode', ], css: [join(currentDir, './assets/css/app.css')], devtools: { enabled: true }, nitro: { prerender: { routes: ['/'], crawlLinks: true, }, }, content: { documentDriven: true, highlight: { theme: { default: 'github-light', dark: 'github-dark', }, }, }, colorMode: { classSuffix: '', }, })