When a CSS file that has been generated by sass is imported into the project, route endpoints are called more than once when the Chrome debugger is open with an incorrect route parameter being passed in. For example, if I have a route
and in this directory I have a +page.server.js and a +page.svelte I can navigate to this route without a problem. I have included a debug in the +page.server.js that will log the route parameters. When navigating to http://localhost:5173/organisations/1/clients/1 This is what I get:
{"organisationId":"1","clientId":"1"}
When I have imported a CSS file that has been generated by the sass CLI into a
Describe the bug
When a CSS file that has been generated by sass is imported into the project, route endpoints are called more than once when the Chrome debugger is open with an incorrect route parameter being passed in. For example, if I have a route
and in this directory I have a
+page.server.js
and a+page.svelte
I can navigate to this route without a problem. I have included a debug in the+page.server.js
that will log the route parameters. When navigating tohttp://localhost:5173/organisations/1/clients/1
This is what I get:When I have imported a CSS file that has been generated by the
sass
CLI into a