mirror of
https://github.com/placeholder-soft/Babylong.git
synced 2026-01-12 15:14:17 +08:00
15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
SchibstedGrotesk: "SchibstedGrotesk",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|