chore: bootstrap Next.js 14 with Directus deps and config

This commit is contained in:
achmad
2026-05-28 22:24:27 +07:00
parent d4d65b1dff
commit a24936d9d7
16 changed files with 8415 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
};
export default config;