TranscendentalRide
TranscendentalRide
I noticed this in particular when trying to overwrite some headers with `throw redirect(301, '/todos')`. In particular want the redirect to look like it is external not internal; no luck....
Why not `+auth.server.js` since authentication is among the basics of apps.
@cdcarson Maybe... but that shouldn't matter I believe the declarative benefits of this "plus paradigm", ie `+function.location.js` affords us not to need to dig into the code to see how...
@Rich-Harris That sounds perfect. Currently the static route takes precedence with `+page.svelte` seems consistent to do the same here. https://stackblitz.com/edit/sveltejs-kit-template-default-mndnrh?file=src/routes/[test]/+page.svelte Also, a request--can we not label this as `p3-edge-case` and...
@Rich-Harris Like this? | | Data SSR Only | Data SSR & CSR | | :--- | :---- | :--- | | **Hydrate** | `+page.server.svelte` | `+page.svelte` | | **Don't...
Added this discussion. https://github.com/sveltejs/kit/discussions/6587 `+config.js` would enable type checking on template names where ornamented file-name lack this type safety when template names change. Type safety would make refactoring and overall...
Right ideally we can control: 1. Only load this query as part of the page (full page render, SSR) never independently. Not remote call eligible, data source is not an...