mirror of
https://github.com/Kyren223/website.git
synced 2025-12-28 08:54:37 +00:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
};
|