wasp/examples/waspello/tailwind.config.cjs
2024-02-09 13:10:37 +01:00

16 lines
284 B
JavaScript

const { resolveProjectPath } = require('wasp/client')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
resolveProjectPath('./src/**/*.{js,jsx,ts,tsx}'),
],
corePlugins: {
//preflight: false
},
theme: {
extend: {},
},
plugins: [],
}