Skip to content

Commit

Permalink
change fileUrl to windows url
Browse files Browse the repository at this point in the history
  • Loading branch information
nksaraf committed Jul 31, 2023
1 parent 7b40280 commit e9199d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vinxi/lib/dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ export async function createDevServer(
globalThis.app = app;

const plugins = [
fileURLToPath(new URL("./app-fetch.js", import.meta.url)),
fileURLToPath(new URL("./app-manifest.js", import.meta.url)),
new URL("./app-fetch.js", import.meta.url).href,
new URL("./app-manifest.js", import.meta.url).href,
];

for (const plugin of plugins) {
Expand Down

0 comments on commit e9199d9

Please sign in to comment.