소스 검색

prepare config for deployment

AykutSarac 3 년 전
부모
커밋
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,
 };