Next.js Discord

Discord Forum

modifying dev server url

Unanswered
vikram posted this in #help-forum
Open in Discord
How to change dev server url in nextjs
I want to change http://localhost:3000/routename

#next

12 Replies

sever url? lke the localhost:3000?
@vikram
Yes
Yes
I just want to add routename after that port so it will directly start on that particular route
module.exports = {
  async redirects() {
    return [
      {
        source: '/',
        destination: '/routename',
        permanent: true,
      },
    ]
  },
}
for you it will be like that
Ok let me check is it works for me or not
i got this error
@vikram i got this error
do you need to have it as output:export?