portfolio/website/nuxt.config.ts

13 lines
243 B
TypeScript
Raw Normal View History

2023-11-17 08:05:27 +01:00
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
2023-11-17 08:12:21 +01:00
devtools: { enabled: true },
modules: [
'@nuxtjs/tailwindcss',
],
2023-11-21 21:23:16 +01:00
router: {
options: {
scrollBehaviorType: 'smooth',
},
},
2023-11-17 08:05:27 +01:00
})