Skip to content

Commit

Permalink
Update resource.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHauschildt authored May 13, 2024
1 parent 95e4e3c commit 5bbd943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function preload(config: Config): Promise<void> {
const resourceResponse = await fetch(resourceUrl);
if (!resourceResponse.ok) {
throw new Error(
`Resource metadata not found. Ensure that the config.publicPath is configured correctl: ${config.publicPath}`
`Resource metadata not found. Ensure that the config.publicPath is configured correctly: ${config.publicPath}`
);
}
const resourceMap = await resourceResponse.json();
Expand Down

0 comments on commit 5bbd943

Please sign in to comment.