Skip to content

fix: use rawUrl for path #954

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/default/netlify.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build]
command = "next build"
publish = ".next"
ignore = "echo CACHED_COMMIT_REF: $CACHED_COMMIT_REF COMMIT_REF: $COMMIT_REF && git diff --exit-code $CACHED_COMMIT_REF $COMMIT_REF ../../"

# ignore = "echo CACHED_COMMIT_REF: $CACHED_COMMIT_REF COMMIT_REF: $COMMIT_REF && git diff --exit-code $CACHED_COMMIT_REF $COMMIT_REF ../../"
[build.environment]
# cache Cypress binary in local "node_modules" folder
# so Netlify caches it
Expand Down
2 changes: 1 addition & 1 deletion src/templates/getHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const makeHandler =
return async (event, context) => {
let requestMode = mode
// Ensure that paths are encoded - but don't double-encode them
event.path = new URL(event.path, event.rawUrl).pathname
event.path = new URL(event.rawUrl).pathname
// Next expects to be able to parse the query from the URL
const query = new URLSearchParams(event.queryStringParameters).toString()
event.path = query ? `${event.path}?${query}` : event.path
Expand Down