Files
nym/explorer-v2/next.config.ts
RadekSabacky 9463f20a3a + basepath
+ redirect to basepath
+ blog icons refactor
+ icons refactor
2025-03-04 19:18:42 +01:00

24 lines
418 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: true,
basePath: "/explorer",
assetPrefix: "/explorer",
trailingSlash: false,
async redirects() {
return [
// Change the basePath to /explorer
{
source: "/",
destination: "/explorer",
basePath: false,
permanent: true,
},
]
}
};
export default nextConfig;