a73007388f
* bump Next in playground * convert legacy Link after Next.js bump * update yarn.lock * switch to npm workspaces * move `packages/playground-*` to `playgrounds/*` * use `npm` instead of `yarn` * sync package-lock.json * use node 20 for insiders releases
12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
/** @type {import('tailwindcss/types').Config} */
|
|
let config = {
|
|
content: ['./src/**/*.vue', './*.html'],
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
require('@headlessui/tailwindcss'),
|
|
],
|
|
}
|
|
|
|
module.exports = config
|