Hi there I started a project recently based on this:
https://github.com/vendure-ecommerce/storefront-remix-starter
I already migrated to use vite. My problem now is that it seems that the current folder structure for the routes does not work with the current remix version anymore.
Can someone tell me how I would need to rename/move the files to adhere to the current standard?
Let's take this example:
/app/routes/account/adresses.tsx
/app/routes/account/history.tsx
/app/routes/account/addresses/$adressId.tsx
Should it be like this?
/app/routes/account.adresses/route.tsx
/app/routes/account.history/route.tsx
/app/routes/account.adresses.$adressId/route.tsx
I appreciate your help