mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 23:58:31 -06:00
working pages and app router
This commit is contained in:
21
nextjs-pages/tailwind.config.ts
Normal file
21
nextjs-pages/tailwind.config.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
import { borderRadius } from "tailwindcss/defaultTheme";
|
||||
|
||||
|
||||
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",
|
||||
},
|
||||
extend: {
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
export default config;
|
||||
Reference in New Issue
Block a user