-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from edgio-docs/COMSUP-302_update_next_nuxt
[COMSUP-302] Update Next and Nuxt examples to latest version; Use v7 IO feature
- Loading branch information
Showing
25 changed files
with
29,867 additions
and
16,152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
// This file was automatically added by edgio init. | ||
// You should commit this file to source control. | ||
const { withEdgio } = require('@edgio/next/config') | ||
const { withEdgio } = require('@edgio/next/config'); | ||
|
||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {} | ||
const nextConfig = { | ||
images: { | ||
domains: [ | ||
'edgio-community-ecommerce-api-example-default.layer0-limelight.link', | ||
], | ||
}, | ||
}; | ||
|
||
const _preEdgioExport = nextConfig;; | ||
const _preEdgioExport = nextConfig; | ||
|
||
module.exports = (phase, config) => | ||
withEdgio({ | ||
..._preEdgioExport | ||
}) | ||
..._preEdgioExport, | ||
}); |
Oops, something went wrong.