* feat(frontend): convert to ts * refactor(frontend): axios-override - simplify shouldMock type * fix: refine stage labels * refactor(frontend): refine `useUserId` signature * fix(frontend): descriptionLines and langsCount can be undefined * refactor(frontend): refine casting on redirectCode * refactor(frontend): refine stageIndex title and types * refactor(frontend): apply pr review comments changes * refactor(frontend): group properties using reference groups * refactor(frontend): remove outdated comment * fix(frontend): mock-http - simplify code
23 lines
429 B
JavaScript
23 lines
429 B
JavaScript
import daisyui from "daisyui";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
screens: {
|
|
sm: "640px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
xl: "1280px",
|
|
"2xl": "1536px",
|
|
"3xl": "1792px",
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
typist: ["Playfair Display SC", "Courier New"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [daisyui],
|
|
};
|