Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
KamyarTaher committed Nov 8, 2024
1 parent 8aaaf3f commit 3177a01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 8 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ["felts.xyz"],
remotePatterns: [
{
protocol: "https",
hostname: "felts.xyz",
port: "", // Leave empty unless a specific port is required
pathname: "/**", // Use `/path/*` to specify a path or `/**` to allow all paths
},
],
},
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// app/cookiePage/page.tsx

async function fetchToken() {
const response = await fetch("http://play.metacube.games/api/set-cookie", {
method: "GET",
Expand Down

0 comments on commit 3177a01

Please sign in to comment.