Skip to content

Commit

Permalink
Update packages/adapter-cloudflare-workers/files/entry.js
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Oct 12, 2022
1 parent 4489dcb commit 0e3bd80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter-cloudflare-workers/files/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
const url = new URL(req.url);

// static assets
if (url.pathname.startsWith(appPath)) {
if (url.pathname.startsWith(app_path)) {
/** @type {Response} */
const res = await get_asset_from_kv(req, env, context);
if (is_error(res.status)) return res;
Expand Down

0 comments on commit 0e3bd80

Please sign in to comment.