Spaces:
Running
Running
File size: 502 Bytes
61e6dfe 0e97e36 9c44b3b 61e6dfe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | import type { NextConfig } from "next";
const nextConfig: NextConfig = {
basePath: "/deepsite",
assetPrefix: "/deepsite",
async redirects() {
return [
{
source: "/",
destination: "/deepsite",
permanent: true,
basePath: false,
},
];
},
experimental: {
globalNotFound: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "huggingface.co",
},
],
},
};
export default nextConfig;
|