
- Removed notes - Updated readme - DB - Updated initial db schema - Updated db seed - Created source, station, and tag models - Libs - Create content source importer - UI - Added content source UI & routes - Updated page layout - Created <Breadcrumbs> component
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./app/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")]
|
|
} satisfies Config;
|