Skip to content

Commit

Permalink
chore: fix path to app script on windows (#9743)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtm-nayan committed May 4, 2023
1 parent 75c2cc0 commit 7e52391
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/perfect-walls-mix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sveltejs/kit': patch
---

chore: fix import path to app script on windows
2 changes: 1 addition & 1 deletion packages/kit/src/exports/vite/dev/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export async function dev(vite, vite_config, svelte_config) {
_: {
client: {
start: `${runtime_base}/client/start.js`,
app: `${svelte_config.kit.outDir}/generated/client/app.js`,
app: `${to_fs(svelte_config.kit.outDir)}/generated/client/app.js`,
imports: [],
stylesheets: [],
fonts: []
Expand Down

0 comments on commit 7e52391

Please sign in to comment.