diff --git a/next.config.js b/next.config.js index 4d3987d..61d26fa 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { basePath: '', + assetPrefix: '/', }; export default nextConfig; \ No newline at end of file diff --git a/next.config.ts b/next.config.ts index bb5b4ef..44970ed 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,8 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - basePath: '', + basePath: "", + assetPrefix: "/", }; export default nextConfig;