1
1
// This file was automatically added by edgio init.
2
2
// You should commit this file to source control.
3
3
// Learn more about this file at https://docs.edg.io/guides/edgio_config
4
- require ( 'dotenv' ) . config ( ) ;
5
-
6
4
module . exports = {
5
+ connector : '@edgio/next' ,
6
+
7
+ // The name of the site in Edgio to which this app should be deployed.
8
+ // name: 'my-site-name',
9
+
10
+ // The name of the organization in Edgio to which this app should be deployed.
11
+ // organization: 'my-organization-name',
12
+
7
13
// Overrides the default path to the routes file. The path should be relative to the root of your app.
8
14
// routes: 'routes.js',
9
15
16
+ // When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17
+ // effectively purging the cache each time you deploy.
18
+ // purgeCacheOnDeploy: false,
19
+
20
+ next : {
21
+ // Output sourcemaps so that stack traces have original source filenames and line numbers when tailing
22
+ // the logs in the Edgio developer console.
23
+ // This config options replaces the edgioSourceMaps option in next.config.js.
24
+ // @default true
25
+ // generateSourceMaps: true
26
+ //
27
+ // Disables the Edgio image optimizer and allows to use the Next's built in image optimizer.
28
+ // This config options replaces the disableImageOptimizer option in edgio.config.js root.
29
+ // @default false
30
+ // disableImageOptimizer: false
31
+ //
32
+ // Disables the Edgio development tools widget on the site.
33
+ // This config options replaces the disableEdgioDevTools option in next.config.js.
34
+ // @default false
35
+ // disableDevtools: false
36
+ //
37
+ // Disables the build of the service worker.
38
+ // @default false
39
+ // disableServiceWorker: false
40
+ //
41
+ // Forces the @edgio /next connector to use the server build.
42
+ // This config option replaces the NEXT_FORCE_SERVER_BUILD env variable.
43
+ // @default false
44
+ // forceServerBuild: false
45
+ //
46
+ // Optimizes the server build by bundling all server assets and decreasing the overall startup time.
47
+ // This option has no effect on apps with serverless build.
48
+ // This option is set to false for Next 13.x apps.
49
+ // @default true
50
+ // optimizeServerBuild: true
51
+ //
52
+ // Set this option to false to remove the default rule that proxies all requests to Next.js in serverless.
53
+ // This is useful if you want to proxy all unmatched pages to different origin.
54
+ // @default true
55
+ // proxyToServerlessByDefault: true
56
+ //
57
+ // Set this option to true to honor Next's internal redirects that either add or remove a trailing slash
58
+ // depending on the value of the `trailingSlash` config. When set to false, these internal redirects are not honored,
59
+ // so sites that fallback to serving from an origin do not add or remove the trailing slash for origin URLs.
60
+ // @default true
61
+ // enforceTrailingSlash: true
62
+ } ,
63
+
10
64
origins : [
11
65
{
12
66
// The name of the backend origin
@@ -66,28 +120,6 @@ module.exports = {
66
120
} ,
67
121
] ,
68
122
69
- // Uncomment the following to specify environment specific configs
70
- // environments: {
71
- // production: {
72
- // hostnames: [{ hostname: 'www.mysite.com' }],
73
- // },
74
- // staging: {
75
- // hostnames: [{ hostname: 'staging.mysite.com' }],
76
- // origins: [
77
- // {
78
- // name: 'origin',
79
- // hosts: [{ location: 'staging-origin.mysite.com' }],
80
- // override_host_header: 'staging-origin.mysite.com',
81
- // tls_verify: {
82
- // use_sni: true,
83
- // sni_hint_and_strict_san_check: 'staging-origin.mysite.com',
84
- // },
85
- // shields: { us_east: 'DCD' },
86
- // },
87
- // ],
88
- // },
89
- // },
90
-
91
123
// Options for hosting serverless functions on Edgio
92
124
// serverless: {
93
125
// // Set to true to include all packages listed in the dependencies property of package.json when deploying to Edgio.
@@ -103,7 +135,7 @@ module.exports = {
103
135
// Defaults to 200, which is the maximum allowed value.
104
136
// prerenderConcurrency: 200,
105
137
106
- // A list of glob patterns identifying which source files should be uploaded when running edgio deploy --includeSources.
138
+ // A list of glob patterns identifying which prerenderConcurrency source files should be uploaded when running edgio deploy --includeSources.
107
139
// This option is primarily used to share source code with Edgio support personnel for the purpose of debugging. If omitted,
108
140
// edgio deploy --includeSources will result in all files which are not gitignored being uploaded to Edgio.
109
141
//
0 commit comments