feat: bootstrap Nuxt portfolio with Tailwind and daisyUI for now

This commit is contained in:
badblocks 2025-07-17 15:53:12 -07:00
commit 91b162fb44
No known key found for this signature in database
15 changed files with 3363 additions and 0 deletions

18
tailwind.config.js Normal file
View file

@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["night", "bumblebee"],
},
};