mirror of
https://github.com/SkyfallWasTaken/skyfalldev.git
synced 2024-11-10 04:09:38 +00:00
12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require("@catppuccin/tailwindcss")({
|
|
defaultFlavour: "macchiato"
|
|
})
|
|
],
|
|
}
|