mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import { borderRadius } from "tailwindcss/defaultTheme";
|
|
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
borderRadius: {
|
|
...borderRadius,
|
|
xl: "24px",
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|