mirror of
https://github.com/Kyren223/website.git
synced 2026-01-02 03:02:28 +00:00
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
// content: ["./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
// require("@tailwindcss/typography")
|
|
],
|
|
};
|