2025-03-12 14:18:25 +08:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
|
import { defineNuxtConfig } from 'nuxt/config'
|
|
|
|
|
|
|
|
|
|
export default defineNuxtConfig({
|
2025-03-13 14:15:31 +08:00
|
|
|
ssr: false,
|
2025-03-12 14:18:25 +08:00
|
|
|
|
2025-03-13 14:15:31 +08:00
|
|
|
routeRules: {
|
|
|
|
|
'/**': { ssr: false }
|
|
|
|
|
},
|
2025-03-12 14:18:25 +08:00
|
|
|
|
2025-03-13 14:15:31 +08:00
|
|
|
css: [
|
|
|
|
|
'swiper/css',
|
|
|
|
|
'swiper/css/mousewheel',
|
|
|
|
|
'@/assets/css/common.scss'
|
|
|
|
|
],
|
|
|
|
|
devtools: { enabled: true },
|
2025-03-12 14:18:25 +08:00
|
|
|
|
2025-03-13 14:15:31 +08:00
|
|
|
postcss: {
|
|
|
|
|
plugins: {
|
|
|
|
|
autoprefixer: {},
|
|
|
|
|
tailwindcss: {},
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-03-12 14:18:25 +08:00
|
|
|
|
2025-03-13 14:15:31 +08:00
|
|
|
modules: ['@pinia/nuxt', 'nuxt-icons'],
|
|
|
|
|
compatibilityDate: '2025-03-12',
|
2025-03-12 14:18:25 +08:00
|
|
|
})
|