-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support path based routing (#165)
- Loading branch information
1 parent
c709fb6
commit 82ebcaf
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
// docs qa | ||
export const IS_DOCS_QA_REDIRECT_ENABLED = | ||
import.meta.env.VITE_DOCS_QA_ENABLE_REDIRECT === 'true' | ||
export const DOCS_QA_STANDALONE_PATH = | ||
import.meta.env.VITE_DOCS_QA_STANDALONE_PATH || 'docs-qa' | ||
import.meta.env.VITE_DOCS_QA_STANDALONE_PATH | ||
export const DOCS_QA_MAX_UPLOAD_SIZE_MB = parseInt( | ||
import.meta.env.VITE_DOCS_QA_MAX_UPLOAD_SIZE_MB || '2' | ||
) |