diff --git a/app.vue b/app.vue index 09f935bb..8094d473 100644 --- a/app.vue +++ b/app.vue @@ -1,6 +1,5 @@ diff --git a/assets/app.css b/assets/app.css new file mode 100644 index 00000000..b987f69c --- /dev/null +++ b/assets/app.css @@ -0,0 +1,2 @@ +@import "tailwindcss"; +@plugin "daisyui"; diff --git a/bun.lockb b/bun.lockb index 00fb095c..df5077ee 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/eslint.config.mjs b/eslint.config.mjs index 934c3a1d..6bcf7822 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -4,3 +4,4 @@ import withNuxt from './.nuxt/eslint.config.mjs' export default withNuxt( // Your custom configs here ) + diff --git a/nuxt.config.ts b/nuxt.config.ts index 989f0d8d..d1d7ad5a 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,3 +1,4 @@ +import tailwindcss from "@tailwindcss/vite"; // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ compatibilityDate: '2025-05-15', @@ -14,5 +15,9 @@ export default defineNuxtConfig({ '@nuxt/fonts', '@nuxt/icon', '@nuxt/image' - ] + ], + vite: { + plugins: [tailwindcss()], + }, + css: ["~/assets/app.css"], }) \ No newline at end of file diff --git a/package.json b/package.json index 5df5fd62..47031f56 100644 --- a/package.json +++ b/package.json @@ -15,9 +15,12 @@ "@nuxt/fonts": "0.11.4", "@nuxt/icon": "1.13.0", "@nuxt/image": "1.10.0", + "@tailwindcss/vite": "^4.1.10", "better-sqlite3": "^11.10.0", + "daisyui": "^5.0.43", "eslint": "^9.0.0", "nuxt": "^3.17.5", + "tailwindcss": "^4.1.10", "vue": "^3.5.16", "vue-router": "^4.5.1" } diff --git a/pages/index.vue b/pages/index.vue new file mode 100644 index 00000000..0ad115af --- /dev/null +++ b/pages/index.vue @@ -0,0 +1,14 @@ + \ No newline at end of file