create-cen-app
Version:
create an client-engineering-style app
15 lines (13 loc) • 307 B
text/typescript
import { type Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
// this needs to be disabled for Carbon Components to work
// properly with tailwindcss
corePlugins: {
preflight: false,
},
plugins: [],
} satisfies Config;