Skip to content

Commit f7b3a10

Browse files
Update the sst urls (#90)
Update the sst/open-next URLs into opennextjs/opennextjs-aws
1 parent 652c1d1 commit f7b3a10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cloudflare/TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DONE:
88
- figure out the assets
99
- copy the template folders
1010

11-
## Open next [example app](https://github.com/sst/open-next/tree/main/example)
11+
## Open next [example app](https://github.com/opennextjs/opennextjs-aws/tree/main/example)
1212

1313
Changes:
1414

packages/cloudflare/src/cli/build/build-next-app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ export async function buildNextjsApp(nextAppDir: string): Promise<void> {
1818
runNextBuildCommand(pm.name, nextAppDir);
1919
}
2020

21-
// equivalent to: https://github.com/sst/open-next/blob/f61b0e94/packages/open-next/src/build.ts#L175-L186
21+
// equivalent to: https://github.com/opennextjs/opennextjs-aws/blob/f61b0e94/packages/open-next/src/build.ts#L175-L186
2222
function runNextBuildCommand(packager: PackageManager, nextAppDir: string) {
2323
const command = `${packager === "npm" ? "npx" : packager} next build`;
2424
execSync(command, {
2525
stdio: "inherit",
2626
cwd: nextAppDir,
2727
env: {
2828
...process.env,
29-
// equivalent to: https://github.com/sst/open-next/blob/f61b0e9/packages/open-next/src/build.ts#L168-L173
29+
// equivalent to: https://github.com/opennextjs/opennextjs-aws/blob/f61b0e9/packages/open-next/src/build.ts#L168-L173
3030
// Equivalent to setting `output: "standalone"` in next.config.js
3131
NEXT_PRIVATE_STANDALONE: "true",
3232
},

0 commit comments

Comments
 (0)