Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ We need your help keeping it up to date and feature complete. Make sure to [**jo

## Features

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!
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!

- [x] App & Pages Router
- [x] API routes
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/inner_workings/components/server/node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The Incremental Cache is a cache that is used to store the results of the ISR **
By default, OpenNext uses S3 as the default incremental cache.

You can override the default cache by setting the `override.incrementalCache` property in the `open-next.config.ts` file.
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)
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)

##### Default S3 Incremental Cache

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

You can override the default cache by setting the `override.tagCache` property in the `open-next.config.ts` file.
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)
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)

##### Default DynamoDB Tag Cache

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/v2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ import { Callout } from 'nextra/components'

### Latest Releases

- OpenNext [2.3.9](https://github.com/sst/open-next/releases/tag/v2.3.9)
- OpenNext [2.3.9](https://github.com/opennextjs/opennextjs-aws/releases/tag/v2.3.9)
4 changes: 2 additions & 2 deletions docs/pages/v2/common_issues/bundle_size.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Callout} from 'nextra/components'

#### Reducing Bundle Size

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)
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)


<Callout type="info" emoji="ℹ️">
Expand All @@ -21,7 +21,7 @@ du -hs .open-next/server-function/node_modules/* | sort -rh
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`

<Callout type="info" emoji="ℹ️">
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.
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.
</Callout>

#### Common issues
Expand Down
4 changes: 2 additions & 2 deletions docs/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Logo from "./components/Logo.svg";

export default {
logo: <Logo />,
docsRepositoryBase: "https://github.com/sst/open-next/tree/main/docs",
docsRepositoryBase: "https://github.com/opennextjs/opennextjs-aws/tree/main/docs",
project: {
link: "https://github.com/sst/open-next",
},
Expand All @@ -20,7 +20,7 @@ export default {
next: false,
},
feedback: {
useLink: () => "https://github.com/sst/open-next/issues/new",
useLink: () => "https://github.com/opennextjs/opennextjs-aws/issues/new",
},
head: (
<>
Expand Down
2 changes: 1 addition & 1 deletion packages/open-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"typescript": "^4.9.3"
},
"bugs": {
"url": "https://github.com/sst/open-next/issues"
"url": "https://github.com/opennextjs/opennextjs-aws/issues"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/open-next/src/build/createServerBundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ function addDenoJson(outputPath: string, packagePath: string) {
);
}

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