We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a8dc8 commit 4dc75beCopy full SHA for 4dc75be
crates/base/test_cases/user-worker-with-import-map/index.ts
@@ -22,7 +22,9 @@ Deno.serve(async (req: Request) => {
22
"helper-from-import-map": `./${path.join(basePath, "helper.ts")}`,
23
},
24
};
25
- const importMapPath = `data:${encodeURIComponent(JSON.stringify(inlineImportMap))}`;
+ const importMapPath = `data:${
26
+ encodeURIComponent(JSON.stringify(inlineImportMap))
27
+ }`;
28
29
const worker = await EdgeRuntime.userWorkers.create({
30
servicePath: userWorkerPath,
0 commit comments