9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./public/index.html", "./src/**/*.{html,js,ts,jsx,tsx}"],
|
|
corePlugins: {
|
|
// preflight: false,
|
|
divideStyle: true,
|
|
},
|
|
};
|