mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-06 04:58:39 +00:00
13 lines
218 B
JavaScript
13 lines
218 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
prefix: "tw-",
|
|
content: ["./src/**/*.{html,js,ts,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
};
|