Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

redirect svelte to svelte-ssr if building for ssr #186

Closed
wants to merge 1 commit into from

Conversation

tanhauhau
Copy link
Member

@benmccann
Copy link
Member

Is there something we should do to make sure we're using a version of Svelte that provides sveltejs/svelte#6416 before executing this new line of code? I'm not sure what's best (peer dep, runtime check with warning, silent runtime check, etc.)

@@ -50,6 +50,7 @@ module.exports = function (options = {}) {
*/
resolveId(importee, importer) {
if (cache_emit.has(importee)) return importee;
if (importee === 'svelte' && compilerOptions.generate === 'ssr') return this.resolve('svelte/ssr', importer, { skipSelf: true });
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to check if the svelte version supports svelte/ssr

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe just test if svelte/ssr resolved and only return it if it did?

@dominikg
Copy link
Member

@benmccann
Copy link
Member

Closing this in favor of sveltejs/svelte#6743

@benmccann benmccann closed this Sep 18, 2021
@dummdidumm dummdidumm deleted the tanhauhau/gh-6372 branch May 5, 2023 10:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

resolve svelte to a different module in SSR mode
3 participants