Skip to content

Commit d7dc13a

Browse files
update opennextjs-aws repository base (#537)
1 parent 47471a7 commit d7dc13a

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

docs/pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ We need your help keeping it up to date and feature complete. Make sure to [**jo
4141

4242
## Features
4343

44-
OpenNext aims to support all Next.js 14 features. Some features are work in progress. Please open a [new issue](https://github.com/sst/open-next/issues/new) to let us know!
44+
OpenNext aims to support all Next.js 14 features. Some features are work in progress. Please open a [new issue](https://github.com/opennextjs/opennextjs-aws/issues/new) to let us know!
4545

4646
- [x] App & Pages Router
4747
- [x] API routes

docs/pages/inner_workings/components/server/node.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The Incremental Cache is a cache that is used to store the results of the ISR **
4141
By default, OpenNext uses S3 as the default incremental cache.
4242

4343
You can override the default cache by setting the `override.incrementalCache` property in the `open-next.config.ts` file.
44-
You can look at the expected types [here](https://github.com/sst/open-next/blob/f1b2b78ce622ceae496ee566abf74f07018619f4/packages/open-next/src/cache/incremental/types.ts#L38)
44+
You can look at the expected types [here](https://github.com/opennextjs/opennextjs-aws/blob/f1b2b78ce622ceae496ee566abf74f07018619f4/packages/open-next/src/cache/incremental/types.ts#L38)
4545

4646
##### Default S3 Incremental Cache
4747

@@ -65,7 +65,7 @@ The Tag Cache is a cache that is used to store the tags for the ISR/SSG pages as
6565
By default, OpenNext uses DynamoDB as the default incremental cache.
6666

6767
You can override the default cache by setting the `override.tagCache` property in the `open-next.config.ts` file.
68-
You can look at the expected types [here](https://github.com/sst/open-next/blob/f1b2b78ce622ceae496ee566abf74f07018619f4/packages/open-next/src/cache/tag/types.ts#L1)
68+
You can look at the expected types [here](https://github.com/opennextjs/opennextjs-aws/blob/f1b2b78ce622ceae496ee566abf74f07018619f4/packages/open-next/src/cache/tag/types.ts#L1)
6969

7070
##### Default DynamoDB Tag Cache
7171

docs/pages/v2.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ import { Callout } from 'nextra/components'
88

99
### Latest Releases
1010

11-
- OpenNext [2.3.9](https://github.com/sst/open-next/releases/tag/v2.3.9)
11+
- OpenNext [2.3.9](https://github.com/opennextjs/opennextjs-aws/releases/tag/v2.3.9)

docs/pages/v2/common_issues/bundle_size.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Callout} from 'nextra/components'
33

44
#### Reducing Bundle Size
55

6-
Serverless environments are sensitive to bundle size, since it has to download and unzip the contents. To help reduce cold start times as much as possible, you should remove any unnecessary files in the node_modules or report offending dev libraries in this [PR](https://github.com/sst/open-next/pull/242)
6+
Serverless environments are sensitive to bundle size, since it has to download and unzip the contents. To help reduce cold start times as much as possible, you should remove any unnecessary files in the node_modules or report offending dev libraries in this [PR](https://github.com/opennextjs/opennextjs-aws/pull/242)
77

88

99
<Callout type="info" emoji="ℹ️">
@@ -21,7 +21,7 @@ du -hs .open-next/server-function/node_modules/* | sort -rh
2121
If your app requires the offending library, then consider moving your business logic of the `api` to its own lambda, eg: `/api/v2` => `Api Lambda`
2222

2323
<Callout type="info" emoji="ℹ️">
24-
There is a [PR](https://github.com/sst/open-next/pull/242) to remove some dev dependency from the output node_modules but that requires more testing before it can merge.
24+
There is a [PR](https://github.com/opennextjs/opennextjs-aws/pull/242) to remove some dev dependency from the output node_modules but that requires more testing before it can merge.
2525
</Callout>
2626

2727
#### Common issues

docs/theme.config.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Logo from "./components/Logo.svg";
55

66
export default {
77
logo: <Logo />,
8-
docsRepositoryBase: "https://github.com/sst/open-next/tree/main/docs",
8+
docsRepositoryBase: "https://github.com/opennextjs/opennextjs-aws/tree/main/docs",
99
project: {
1010
link: "https://github.com/sst/open-next",
1111
},
@@ -20,7 +20,7 @@ export default {
2020
next: false,
2121
},
2222
feedback: {
23-
useLink: () => "https://github.com/sst/open-next/issues/new",
23+
useLink: () => "https://github.com/opennextjs/opennextjs-aws/issues/new",
2424
},
2525
head: (
2626
<>

packages/open-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"typescript": "^4.9.3"
5858
},
5959
"bugs": {
60-
"url": "https://github.com/sst/open-next/issues"
60+
"url": "https://github.com/opennextjs/opennextjs-aws/issues"
6161
},
6262
"repository": {
6363
"type": "git",

packages/open-next/src/build/createServerBundle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function addDenoJson(outputPath: string, packagePath: string) {
314314
);
315315
}
316316

317-
//TODO: check if this PR is still necessary https://github.com/sst/open-next/pull/341
317+
//TODO: check if this PR is still necessary https://github.com/opennextjs/opennextjs-aws/pull/341
318318
function addMonorepoEntrypoint(outputPath: string, packagePath: string) {
319319
// Note: in the monorepo case, the handler file is output to
320320
// `.next/standalone/package/path/index.mjs`, but we want

0 commit comments

Comments
 (0)