12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
corePlugins: {
|
||
|
preflight: false,
|
||
|
},
|
||
|
};
|