I'm using Next.Js for a website project And I wondered if it is possible to use "next export" with dynamic routes without using getStaticPath? Because my project needs routes like this:
That username is specific for each person but the problem is if I use getStaticPath it will create an HTML file for each person which is not efficient
Is it a way to export the project with a dynamic route and not create HTML for each element?