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
+1
View File
@@ -28,3 +28,4 @@ DATABASE_URL=""
# Website Variables
NEXT_PUBLIC_SITE_URL="https://entgamers.com"
IMAGE_DOMAINS="domain.com,another.domain.com"
BIN
View File
Binary file not shown.
+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
}
}
+1 -1
View File
@@ -24,7 +24,7 @@
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^2.0.1",
"appwrite": "^13.0.1",
"entgamers-database": "0.0.13",
"entgamers-database": "0.0.14",
"entgamers-panda-preset": "0.1.2",
"formik": "^2.4.5",
"framer-motion": "^10.17.6",
+2 -1
View File
@@ -34,7 +34,8 @@
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
".next/types/**/*.ts",
"next.config.js"
],
"exclude": [
"node_modules"