chore: updated dependencies

This commit is contained in:
2024-01-27 14:08:36 -06:00
parent 21bd696a30
commit 71c14fee52
5 changed files with 11 additions and 4 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
/** @type {import('next').NextConfig} */
const imageDomains = (process.env.IMAGE_DOMAINS ?? '').split(',').map(domain => domain.trim())
module.exports = {
reactStrictMode: true
reactStrictMode: true,
images: {
domains: imageDomains
}
}