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