mirror of
https://github.com/dream-num/univer.git
synced 2026-08-30 17:21:11 +08:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
import preset from '@univerjs-infra/shared/tailwind';
|
|
|
|
const config: Config = {
|
|
presets: [preset],
|
|
content: [
|
|
'./src/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
};
|
|
|
|
export default config;
|