idimitrov.dev/tailwind.config.ts

20 lines
395 B
TypeScript
Raw Normal View History

2023-10-27 17:12:20 +02:00
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
2023-11-11 15:21:23 +01:00
safelist: [{
pattern: /hljs+/,
}],
2023-10-27 17:12:20 +02:00
theme: {
2023-11-11 15:21:23 +01:00
hljs: {
theme: 'night-owl',
2023-10-27 17:12:20 +02:00
},
},
2023-11-11 15:21:23 +01:00
plugins: [require('tailwind-highlightjs')],
2023-10-27 17:12:20 +02:00
}
export default config