wasp/examples/waspello/tailwind.config.cjs

16 lines
281 B
JavaScript
Raw Normal View History

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