mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-23 01:54:37 +03:00
16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
const { resolveProjectPath } = require('wasp/dev')
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
resolveProjectPath('./src/**/*.{js,jsx,ts,tsx}'),
|
|
],
|
|
corePlugins: {
|
|
//preflight: false
|
|
},
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|