chore: updated dependencies
This commit is contained in:
+2
-1
@@ -27,4 +27,5 @@ DATABASE_URL=""
|
|||||||
|
|
||||||
# Website Variables
|
# Website Variables
|
||||||
|
|
||||||
NEXT_PUBLIC_SITE_URL="https://entgamers.com"
|
NEXT_PUBLIC_SITE_URL="https://entgamers.com"
|
||||||
|
IMAGE_DOMAINS="domain.com,another.domain.com"
|
||||||
+6
-1
@@ -1,5 +1,10 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
|
|
||||||
|
const imageDomains = (process.env.IMAGE_DOMAINS ?? '').split(',').map(domain => domain.trim())
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
reactStrictMode: true
|
reactStrictMode: true,
|
||||||
|
images: {
|
||||||
|
domains: imageDomains
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@
|
|||||||
"@fortawesome/react-fontawesome": "^0.2.0",
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
||||||
"@reduxjs/toolkit": "^2.0.1",
|
"@reduxjs/toolkit": "^2.0.1",
|
||||||
"appwrite": "^13.0.1",
|
"appwrite": "^13.0.1",
|
||||||
"entgamers-database": "0.0.13",
|
"entgamers-database": "0.0.14",
|
||||||
"entgamers-panda-preset": "0.1.2",
|
"entgamers-panda-preset": "0.1.2",
|
||||||
"formik": "^2.4.5",
|
"formik": "^2.4.5",
|
||||||
"framer-motion": "^10.17.6",
|
"framer-motion": "^10.17.6",
|
||||||
|
|||||||
+2
-1
@@ -34,7 +34,8 @@
|
|||||||
"next-env.d.ts",
|
"next-env.d.ts",
|
||||||
"**/*.ts",
|
"**/*.ts",
|
||||||
"**/*.tsx",
|
"**/*.tsx",
|
||||||
".next/types/**/*.ts"
|
".next/types/**/*.ts",
|
||||||
|
"next.config.js"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules"
|
||||||
|
|||||||
Reference in New Issue
Block a user