Files
nym/explorer-v2/next.config.js
T
benedettadavico 9f7d7d98b8 lint
2025-09-11 18:21:48 +02:00

25 lines
424 B
JavaScript

// @ts-check
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
basePath: "/explorer",
assetPrefix: "/explorer",
trailingSlash: false,
async redirects() {
return [
// Change the basePath to /explorer
{
source: "/",
destination: "/explorer",
basePath: false,
permanent: true,
},
];
},
};
module.exports = nextConfig;