paulnicoue/nuxt.config.ts

28 lines
620 B
TypeScript
Raw Normal View History

2022-09-30 16:18:49 +02:00
export default defineNuxtConfig({
2023-01-11 15:16:55 +01:00
css: [
'minireset.css',
'~/assets/styles/_fonts.scss',
'~/assets/styles/_animations.scss'
],
modules: [
'@funken-studio/sitemap-nuxt-3'
],
2022-09-30 16:18:49 +02:00
postcss: {
plugins: {
'autoprefixer': {}
}
},
sitemap: {
2023-01-06 15:46:20 +01:00
hostname: 'https://paulnicoue.com'
2023-01-11 15:16:55 +01:00
},
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData: '@use "@/assets/styles/_variables.scss" as *;' // Global SASS variables import
}
}
}
2022-09-30 16:18:49 +02:00
}
})