AykutSarac 3 лет назад
Родитель
Сommit
91bd509cb2
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      next.config.js

+ 0 - 3
next.config.js

@@ -1,14 +1,11 @@
 const isProd = process.env.NODE_ENV === "production";
-const assetPrefix = isProd ? '/jsonvisio.com' : ''
 
 /** @type {import('next').NextConfig} */
 const nextConfig = {
-  basePath: '/jsonvisio.com',
   exportPathMap: () => ({
     '/': { page: '/' },
     '/editor': { page: '/editor' },
   }),
-  assetPrefix,
   reactStrictMode: true,
   trailingSlash: true,
 };