소스 검색

Add trailing slash for paths (#1517)

Nikhil Rao 1 년 전
부모
커밋
56ab2bb012
2개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      reflex/.templates/web/next.config.js
  2. 0 1
      reflex/reflex.py

+ 1 - 0
reflex/.templates/web/next.config.js

@@ -1,4 +1,5 @@
 module.exports = {
   reactStrictMode: true,
   compress: true,
+  trailingSlash: true,
 };

+ 0 - 1
reflex/reflex.py

@@ -199,7 +199,6 @@ def deploy(
         return
 
     # Compile the app in production mode.
-    console.info("Compiling production app")
     export(loglevel=loglevel)
 
     # Exit early if this is a dry run.