diff --git a/next.config.js b/next.config.js index 34d46613..90e11954 100644 --- a/next.config.js +++ b/next.config.js @@ -68,6 +68,11 @@ const nextConfig = { destination: "https://shardeum.org/", permanent: true, }, + // { + // source: "/issuance", + // destination: "https://issuance-dashboard.vercel.app/", + // permanent: true, + // }, ]; }, async rewrites() { @@ -84,6 +89,10 @@ const nextConfig = { source: "/explore/wp-admin", destination: `${process.env.EXPLORE_URL}/wp-admin/index.php`, }, + { + source: "/issuance-dashboard/:slug*", + destination: `${process.env.ISSUANCE_URL}/:slug*`, + }, ]; }, async headers() { @@ -104,6 +113,14 @@ const nextConfig = { { key: "host", value: process.env.ENV_DOMAIN }, ], }, + { + source: "/issuance-dashboard/:slug*", + headers: [ + { key: "x-forwarded-proto", value: "https" }, + { key: "x-forwarded-host", value: process.env.ENV_DOMAIN }, + { key: "host", value: process.env.ENV_DOMAIN }, + ], + }, ]; }, }; diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 00000000..0d6714d2 Binary files /dev/null and b/public/logo.png differ