Custom border-radius
Because the Ncmaz NextJs project uses the TailwindCss, so you can essay to customize the border-radius - https://tailwindcss.com/docs/border-radius

Open/edit the
Ncmaz-faust/tailwind.config.js
fileAdd the borderRadius option to
module.exports/theme/extend
(Change the value as you like)extend: { ... borderRadius: { none: "0", sm: "0rem", DEFAULT: "0rem", md: "0rem", lg: "0rem", xl: "0rem", "2xl": "0rem", "3xl": "0rem", "[2rem]": "0rem", "[40px]": "0rem", full: "9999px", }, },
Save and try to run on localhost if you want:
"npm run dev"
After that, you can redeploy to production
Last updated
Was this helpful?