dominikg / svite

svelte integration for vite
MIT License
373 stars 21 forks source link

Problem with routify template #79

Closed thomanimation closed 3 years ago

thomanimation commented 3 years ago

Description

Running the routify-mdsvex template results in an empty page and an error about missing .routify/routes

Reproduction

Run: svite create -t routify-mdsvex and then: svite dev inside the newly created folder: /svite-routify-mdsvex Open the browser at http://localhost:3000/ See an empty page and check the console for the error.

dominikg commented 3 years ago

please use npm run dev routify needs a separate process to watch for route changes. the run script starts it alongside the vite server

thomanimation commented 3 years ago

Thank you very much.