mirror of
https://github.com/LukeHagar/Anchor.git
synced 2025-12-06 12:27:47 +00:00
18 lines
467 B
JavaScript
18 lines
467 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
require('path').join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
...require('@skeletonlabs/skeleton/tailwind/skeleton.cjs')()
|
|
]
|
|
};
|