Skip to content

Commit

Permalink
type tailwind.config.js files for playgrounds
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed May 23, 2022
1 parent b29af84 commit 30aeaf2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion packages/playground-react/tailwind.config.js
@@ -1,8 +1,11 @@
module.exports = {
/** @type {import('tailwindcss/types').Config} */
let config = {
content: ['./{pages,components}/**/*.{js,ts,jsx,tsx}'],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@headlessui/tailwindcss'),
],
}

module.exports = config
5 changes: 4 additions & 1 deletion packages/playground-vue/tailwind.config.js
@@ -1,8 +1,11 @@
module.exports = {
/** @type {import('tailwindcss/types').Config} */
let config = {
content: ['./src/**/*.vue', './*.html'],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@headlessui/tailwindcss'),
],
}

module.exports = config

0 comments on commit 30aeaf2

Please sign in to comment.