|
| 1 | +// This file was automatically added by edgio init. |
| 2 | +// You should commit this file to source control. |
| 3 | +// Learn more about this file at https://docs.edg.io/guides/edgio_config |
| 4 | +module.exports = { |
| 5 | + connector: '@edgio/angular', |
| 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 team in Edgio to which this app should be deployed. |
| 11 | + // team: 'my-team-name', |
| 12 | + |
| 13 | + // backends: { |
| 14 | + // origin: { |
| 15 | + // // The domain name or IP address of the origin server |
| 16 | + // domainOrIp: 'example.com', |
| 17 | + // |
| 18 | + // // When provided, the following value will be sent as the host header when connecting to the origin. |
| 19 | + // // If omitted, the host header from the browser will be forwarded to the origin. |
| 20 | + // hostHeader: 'example.com', |
| 21 | + // |
| 22 | + // // Uncomment the following line if TLS is not set up properly on the origin domain and you want to ignore TLS errors |
| 23 | + // // disableCheckCert: true, |
| 24 | + // |
| 25 | + // // Overrides the default ports (80 for http and 443 for https) and instead use a specific port |
| 26 | + // // when connecting to the origin |
| 27 | + // // port: 1337, |
| 28 | + // }, |
| 29 | + // }, |
| 30 | + |
| 31 | + // Overrides the default path to the routes file. The path should be relative to the root of your app. |
| 32 | + // routes: 'routes.js', |
| 33 | + |
| 34 | + // The maximum number of URLs that will be concurrently prerendered during deployment when static prerendering is enabled. |
| 35 | + // Defaults to 200, which is the maximum allowed value. |
| 36 | + // prerenderConcurrency: 200, |
| 37 | + |
| 38 | + // A list of glob patterns identifying which source files should be uploaded when running edgio deploy --includeSources. |
| 39 | + // This option is primarily used to share source code with Edgio support personnel for the purpose of debugging. If omitted, |
| 40 | + // edgio deploy --includeSources will result in all files which are not gitignored being uploaded to Edgio. |
| 41 | + // |
| 42 | + // sources : [ |
| 43 | + // '**/*', // include all files |
| 44 | + // '!(**/secrets/**/*)', // except everything in the secrets directory |
| 45 | + // ], |
| 46 | + |
| 47 | + // Allows you to include additional resources in the bundle that is deployed to Edgio’s serverless JS workers. |
| 48 | + // Keys are globs, value can be a boolean or string. This is typically used to ensure that resources |
| 49 | + // that need to be dynamically required at runtime such as build manifests for server-side rendering |
| 50 | + // or other config files are present in the cloud. |
| 51 | + // |
| 52 | + // includeFiles: { |
| 53 | + // 'lang/**/*': true, // Just includes the specified files |
| 54 | + // 'content/**/*': 'another/dir/in/edgio/lambda', // Copies the files into specific directory within Edgio build |
| 55 | + // }, |
| 56 | + |
| 57 | + // Set to true to include all packages listed in the dependencies property of package.json when deploying to Edgio. |
| 58 | + // This option generally isn't needed as Edgio automatically includes all modules imported by your code in the bundle that |
| 59 | + // is uploaded during deployment |
| 60 | + // |
| 61 | + // includeNodeModules: true, |
| 62 | +} |
0 commit comments