sp-dev-fx-webparts/samples/react-birthdays-per-month/tailwind.config.js

13 lines
218 B
JavaScript
Raw Normal View History

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