Skip to content

Commit 7044ea7

Browse files
authored
use standard example.com domain (#14353)
1 parent b216e47 commit 7044ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/docs/60-appendix/10-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ How to setup rewrites in production will depend on your deployment platform. If
143143
/// file: src/routes/api/[...path]/+server.js
144144
/** @type {import('./$types').RequestHandler} */
145145
export function GET({ params, url }) {
146-
return fetch(`https://my-api-server.com/${params.path + url.search}`);
146+
return fetch(`https://example.com/${params.path + url.search}`);
147147
}
148148
```
149149

0 commit comments

Comments
 (0)