19 lines
397 B
TypeScript
19 lines
397 B
TypeScript
import tailwindcssLogical from 'tailwindcss-logical'
|
|
import type { Config } from 'tailwindcss'
|
|
|
|
import tailwindPlugin from './src/@core/tailwind/plugin'
|
|
|
|
const config: Config = {
|
|
content: ['./src/**/*.{js,ts,jsx,tsx,css}'],
|
|
corePlugins: {
|
|
preflight: false
|
|
},
|
|
important: '#__next',
|
|
plugins: [tailwindcssLogical, tailwindPlugin],
|
|
theme: {
|
|
extend: {}
|
|
}
|
|
}
|
|
|
|
export default config
|