11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
// See rollup.config.js for classes used in the HTML template
|
|
safelist: ['bg-slate-100', 'dark:bg-slate-800', 'min-h-screen'],
|
|
}
|