switch to next.js

- init next app
- add daisyUI
This commit is contained in:
Nathaniel Tampus
2023-02-13 23:12:16 +08:00
parent 209ebbfd9d
commit 862cada547
26 changed files with 132 additions and 246 deletions

View File

@@ -1,8 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,ts,jsx,tsx}"],
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {}
},
plugins: []
plugins: [require("daisyui")],
daisyui: {
themes: ["cmyk", "night"],
darkTheme: "night"
}
};