13 lines
209 B
JavaScript
13 lines
209 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{svelte,js,ts}'],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ["'Sarabun'"]
|
|
},
|
|
extend: {
|
|
}
|
|
},
|
|
plugins: [],
|
|
};
|
|
|