forked from baron/baron-sso
15 lines
321 B
TypeScript
15 lines
321 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import commonPreset from "../common/theme/tailwind.preset";
|
|
|
|
const config: Config = {
|
|
presets: [commonPreset],
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{ts,tsx}",
|
|
"../common/core/**/*.{ts,tsx}",
|
|
"../common/shell/**/*.{ts,tsx}",
|
|
],
|
|
};
|
|
|
|
export default config;
|