24 lines
402 B
TypeScript
24 lines
402 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-11-01',
|
|
ssr: true,
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
app: {
|
|
pageTransition: {
|
|
name: 'page',
|
|
mode: 'out-in'
|
|
},
|
|
},
|
|
modules: [
|
|
'nuxt-particles'
|
|
],
|
|
particles: {
|
|
mode: 'slim',
|
|
lazy: true
|
|
}
|
|
})
|