13 lines
218 B
JavaScript
Raw Normal View History

2022-11-05 18:29:52 +07:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2022-12-03 10:50:24 +10:00
prefix: "tw-",
2022-11-05 18:29:52 +07:00
content: ["./src/**/*.{html,js,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
2022-12-03 10:50:24 +10:00
corePlugins: {
preflight: false,
},
};