opengis/tailwind.config.js
2025-01-29 08:58:46 +07:00

13 lines
252 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Noto Sans Thai", "sans-serif"],
},
},
},
plugins: [],
};