File tree 5 files changed +11
-11
lines changed
5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
- # Next.js on Compute@Edge Runtime Server
1
+ # Next.js Runtime Server on Fastly Compute
2
2
3
3
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.
5
5
It enables running pages and API routes that target the ` nodejs ` runtime
6
- on Compute@Edge .
6
+ on Compute.
7
7
8
8
NextWebServer (the Edge Runtime version) should be possible to run without
9
9
this port.
Original file line number Diff line number Diff line change 2
2
"name" : " @fastly/next-compute-js-server-12.3.0" ,
3
3
"version" : " 0.2.3" ,
4
4
"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)" ,
6
6
"main" : " ./dist/server/index.js" ,
7
7
"types" : " ./dist/server/index.d.ts" ,
8
8
"scripts" : {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import type { LoadComponentsReturnType } from 'next/dist/server/load-components'
20
20
21
21
/**
22
22
* 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,
24
24
* found at next/server/load-components.ts)
25
25
*
26
26
* Differences:
Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ export interface ComputeJsServerOptions extends Options {
76
76
export type ComputeJsRequestHandler = ( request : Request ) => Promise < Response > ;
77
77
78
78
/**
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,
81
81
* found at next/server/next-server.ts)
82
82
*/
83
83
export default class NextComputeJsServer extends BaseServer < ComputeJsServerOptions > {
@@ -132,7 +132,7 @@ export default class NextComputeJsServer extends BaseServer<ComputeJsServerOptio
132
132
}
133
133
134
134
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
136
136
}
137
137
138
138
protected getResponseCache ( ) {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { getFsSettings } from './fs';
23
23
24
24
/**
25
25
* 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,
27
27
* found at next/server/require.ts)
28
28
*/
29
29
export function getPagePath (
@@ -91,7 +91,7 @@ export function getPagePath(
91
91
92
92
/**
93
93
* 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,
95
95
* found at next/server/require.ts)
96
96
*/
97
97
export async function requirePage (
@@ -120,7 +120,7 @@ export async function requirePage(
120
120
121
121
/**
122
122
* 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,
124
124
* found at next/server/require.ts)
125
125
*/
126
126
export function requireFontManifest ( distDir : string , serverless : boolean ) {
You can’t perform that action at this time.
0 commit comments