Skip to content

Commit 72651a2

Browse files
authored
Merge pull request #5 from fastly/kats/branding-changes
Apply "Compute" branding changes
2 parents 5db0167 + 1edbaa5 commit 72651a2

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Next.js on Compute@Edge Runtime Server
1+
# Next.js Runtime Server on Fastly Compute
22

33
This is an implementation of Next.js's BaseServer for
4-
Compute@Edge and the behavior is modeled highly off of NextNodeServer.
4+
Fastly Compute, and the behavior is modeled highly off of NextNodeServer.
55
It enables running pages and API routes that target the `nodejs` runtime
6-
on Compute@Edge.
6+
on Compute.
77

88
NextWebServer (the Edge Runtime version) should be possible to run without
99
this port.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@fastly/next-compute-js-server-12.3.0",
33
"version": "0.2.3",
44
"license": "MIT",
5-
"description": "Next.js Runtime for Fastly Compute@Edge (12.3.0)",
5+
"description": "Next.js Runtime for Fastly Compute (12.3.0)",
66
"main": "./dist/server/index.js",
77
"types": "./dist/server/index.d.ts",
88
"scripts": {

src/server/load-components.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type { LoadComponentsReturnType } from 'next/dist/server/load-components'
2020

2121
/**
2222
* Loads React component associated with a given pathname.
23-
* (An adaptation for Compute@Edge of function in Next.js of the same name,
23+
* (An adaptation for Compute of function in Next.js of the same name,
2424
* found at next/server/load-components.ts)
2525
*
2626
* Differences:

src/server/next-compute-js-server.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export interface ComputeJsServerOptions extends Options {
7676
export type ComputeJsRequestHandler = (request: Request) => Promise<Response>;
7777

7878
/**
79-
* An implementation of a Next.js server that has been adapted to run in Compute@Edge.
80-
* (An adaptation for Compute@Edge of NextNodeServer in Next.js,
79+
* An implementation of a Next.js server that has been adapted to run in Compute.
80+
* (An adaptation for Compute of NextNodeServer in Next.js,
8181
* found at next/server/next-server.ts)
8282
*/
8383
export default class NextComputeJsServer extends BaseServer<ComputeJsServerOptions> {
@@ -132,7 +132,7 @@ export default class NextComputeJsServer extends BaseServer<ComputeJsServerOptio
132132
}
133133

134134
protected loadEnvConfig(): void {
135-
// NOTE: env config not loaded for Compute@Edge, here to fulfill abstract function
135+
// NOTE: env config not loaded for Compute, here to fulfill abstract function
136136
}
137137

138138
protected getResponseCache() {

src/server/require.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { getFsSettings } from './fs';
2323

2424
/**
2525
* Finds the path that corresponds to a page, based on the pages manifest and localizations.
26-
* (An adaptation for Compute@Edge of function in Next.js of the same name,
26+
* (An adaptation for Compute of function in Next.js of the same name,
2727
* found at next/server/require.ts)
2828
*/
2929
export function getPagePath(
@@ -91,7 +91,7 @@ export function getPagePath(
9191

9292
/**
9393
* Loads the string or module that corresponds to a page.
94-
* (An adaptation for Compute@Edge of function in Next.js of the same name,
94+
* (An adaptation for Compute of function in Next.js of the same name,
9595
* found at next/server/require.ts)
9696
*/
9797
export async function requirePage(
@@ -120,7 +120,7 @@ export async function requirePage(
120120

121121
/**
122122
* Load the font manifest.
123-
* (An adaptation for Compute@Edge of function in Next.js of the same name,
123+
* (An adaptation for Compute of function in Next.js of the same name,
124124
* found at next/server/require.ts)
125125
*/
126126
export function requireFontManifest(distDir: string, serverless: boolean) {

0 commit comments

Comments
 (0)