mirror of
https://github.com/hexahigh/portfolio.git
synced 2025-12-12 03:25:06 +01:00
10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
prefix: "tw-",
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|