mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-09 21:57:39 +03:00
16 lines
284 B
JavaScript
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: [],
|
|
}
|