Skip to content

Commit

Permalink
fix tailwindcss content
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Jun 10, 2024
1 parent 98b4501 commit 81772bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/docs/src/components/OpenInCodeSandbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ ReactDOM.createRoot(document.getElementById('root')).render(
'tailwind.config.js': {
content: `/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./node_modules/actify/dist/**/*.{js,jsx}'],
content: ['*.{jsx,tsx}', './node_modules/actify/dist/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/components/OpenInStackblitz.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ ReactDOM.createRoot(document.getElementById('root')).render(
}`,
'tailwind.config.js': `/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./node_modules/actify/dist/**/*.{js,jsx}'],
content: ['*.{jsx,tsx}', './node_modules/actify/dist/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
Expand Down

0 comments on commit 81772bc

Please sign in to comment.