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