feat: initial project setup with Nuxt and Tailwind CSS

This commit is contained in:
2025-06-18 15:59:25 +08:00
commit 0dcd91cbb9
12 changed files with 7685 additions and 0 deletions

8
nuxt.config.ts Normal file
View File

@ -0,0 +1,8 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
modules: [
'@nuxtjs/tailwindcss'
]
})