From 5f96a0b1d7fc89c7863a675a0e89d499830c7f14 Mon Sep 17 00:00:00 2001 From: Irene Oppo Date: Thu, 27 Jan 2022 19:06:38 +0100 Subject: [PATCH] Added next.config.js with datocms-assets domain in allow list (#33647) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [v] Make sure the linting passes by running `yarn lint` Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com> --- examples/cms-datocms/next.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/cms-datocms/next.config.js diff --git a/examples/cms-datocms/next.config.js b/examples/cms-datocms/next.config.js new file mode 100644 index 000000000000000..761cfcc4d39b227 --- /dev/null +++ b/examples/cms-datocms/next.config.js @@ -0,0 +1,5 @@ +module.exports = { + images: { + domains: ['www.datocms-assets.com'], + }, +}