* feat: setup eslint at root level * chore: disable craco eslint-plugin * fix: add missing extension to import * fix: apply review * chore: use gitignore to exclude files from eslint * chore: disable eslint step in craco via config rather than env variable * chore: remove npmrc * chore: remove `eslint-plugin-react` override
21 lines
410 B
JavaScript
21 lines
410 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
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: [require("daisyui")],
|
|
};
|