Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .env.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NEXT_PUBLIC_TEST_MONGODB_URI= "mongodb+srv://binanceShared:zJF4h69NSP0mvC9B@binance.hgrta.mongodb.net/koryntia?retryWrites=true&w=majority"
NEXT_PUBLIC_TEST_MONGODB_URI=mongodb+srv://memegoat:referral@koryntiatest.wnzx2uj.mongodb.net/?retryWrites=true&w=majority&appName=KoryntiaTest
NEXT_PUBLIC_TEST_ORACLE_CONTRACT_ADDRESS=0x8A6e317be912B816F3cD34eB8EFc256a41ac59Fe
NEXT_PUBLIC_TEST_RPC_URL=https://eth-sepolia.g.alchemy.com/v2/sgd1Uq6Y0HvK2Hksy0tG9EDrE3agLuVO
NEXT_PUBLIC_NETWORK_ID=11155111
Expand Down
19 changes: 19 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ["mongoose", "@typegoose/typegoose"],
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
};

export default nextConfig;
Loading