Files
ritzenbergen-frontend/nuxt.config.ts
2026-04-26 22:29:51 +02:00

45 lines
1.2 KiB
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
modules: [],
devServer: {
port: 1420
},
css: [
'~/assets/mobirise/css/additional.scss',
'~/assets/web/assets/mobirise-icons2/mobirise2.css',
'~/assets/parallax/jarallax.css',
'~/assets/bootstrap/css/bootstrap.min.css',
'~/assets/bootstrap/css/bootstrap-grid.min.css',
'~/assets/bootstrap/css/bootstrap-reboot.min.css',
'~/assets/dropdown/css/style.scss',
'~/assets/socicon/css/styles.css',
'~/assets/animatecss/animate.css',
'~/assets/theme/css/style.css',
'~/assets/css/index.css',
'~/assets/main.scss'
],
app: {
head: {
link: [
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
},
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;700&display=swap"
},
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
}
]
}
}
})