saveweb-search-frontend/tailwind.config.cjs

16 lines
297 B
JavaScript
Raw Permalink Normal View History

2023-04-01 04:49:45 -07:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
safelist: [
'text-purple-500' // for uglyHighlight
],
2023-04-01 04:49:45 -07:00
theme: {
extend: {},
},
plugins: [],
corePlugins: {
preflight: false,
},
2023-04-01 05:35:25 -07:00
important: true,
2023-04-01 04:49:45 -07:00
};