mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 12:26:13 -06:00
38 lines
803 B
TypeScript
38 lines
803 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
site: {
|
|
url: 'the-office.xevion.dev',
|
|
name: 'The Office',
|
|
},
|
|
css: ['~/assets/tailwind.css', '@fontsource-variable/roboto-slab', '@fontsource/open-sans'],
|
|
nitro: {
|
|
prerender: {
|
|
crawlLinks: true,
|
|
routes: ['/sitemap.xml', '/robots.txt'],
|
|
},
|
|
},
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
modules: [
|
|
'@nuxt/test-utils',
|
|
'@nuxt/ui',
|
|
'@nuxt/eslint',
|
|
'@nuxt/image',
|
|
'shadcn-nuxt',
|
|
'@pinia/nuxt',
|
|
'@nuxtjs/sitemap',
|
|
],
|
|
shadcn: {
|
|
prefix: '',
|
|
componentDir: './app/components/ui',
|
|
},
|
|
typescript: {
|
|
typeCheck: true,
|
|
},
|
|
});
|