Skip to content

Commit

Permalink
Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh-mn-yral committed Jan 4, 2024
1 parent 3043e98 commit 7ce8afb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/components/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const config = {
},
animation: {
'spin-slow': 'spin 3s linear infinite',
'spin-slower': 'spin 8s linear infinite',
},
},
},
Expand Down
10 changes: 9 additions & 1 deletion packages/experiments/tailwind.config.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
const tailwindConfig = require('@hnn/components/tailwind.config.cjs')

module.exports = tailwindConfig
const config = {
...tailwindConfig,
content: [
'./**/*.{html,js,svelte,ts}',
'../components/**/*.{html,js,svelte,ts}',
],
}

module.exports = config
10 changes: 9 additions & 1 deletion packages/web-client/tailwind.config.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
const tailwindConfig = require('@hnn/components/tailwind.config.cjs')

module.exports = tailwindConfig
const config = {
...tailwindConfig,
content: [
'./**/*.{html,js,svelte,ts}',
'../components/**/*.{html,js,svelte,ts}',
],
}

module.exports = config

0 comments on commit 7ce8afb

Please sign in to comment.