用code server 啟動的疑難. #895
raychunghk
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我使用家中的 NAS,透過 Docker container 運行 Code Server 作為 VS Code 的替代方案。因此,當我需要除錯 React 應用程式時,必須添加 basepath 或 base URL。例如,localhost:5173 必須改為 https://codeserver.myNAS.com/proxy/5173。
目前我的應用程式勉強可以運作,具體做法是修改兩個檔案:
index.tsx
和vite.config.js
。我的問題如下:
vite.config.js
是否遺漏了base
設定? 我的vite.config.js
已經設定了base: basePath
,其中basePath
為/proxy/5173
。 請問這樣設定正確嗎?重複的 basepath 問題: 當我開啟網頁時,系統會意外地重複 basepath 多次。例如,開啟
/proxy/5173
會變成/proxy/5173/proxy/5173
,但應用程式仍然可以正常運作。我嘗試多次調整basename
和vite.config.js
,但問題依然存在。以下是我的程式碼片段:
1.
index.tsx
:2.
vite.config.js
:懇請協助解決這些問題。
Beta Was this translation helpful? Give feedback.
All reactions