9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} as Omit<Config, 'content'>;
|