File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ export CODER_OIDC_REDIRECT_URI="$BASE_URL/api/v2/users/oidc/callback"
15
15
export CODER_OIDC_LOGOUT_URI = " https://oidc.logout.url"
16
16
export CODER_OIDC_TOKEN_PATH = " /home/ubuntu/.coder/tokens"
17
17
18
- # if IS_CI_BUILD variable is true, CODER_DISABLE_PASSWORD_AUTH variable must be false
18
+ # if VITE_IS_CI_BUILD variable is true, CODER_DISABLE_PASSWORD_AUTH variable must be false
19
19
export VITE_IS_CI_BUILD = true
20
20
export CODER_DISABLE_PASSWORD_AUTH = false
Original file line number Diff line number Diff line change 1
1
/// <reference types="vite/client" />
2
2
3
3
interface ViteTypeOptions {
4
- // 아래 라인을 추가하면, ImportMetaEnv 타입을 엄격하게 설정해
5
- // 알 수 없는 키를 허용하지 않게 할 수 있습니다.
6
4
strictImportEnv : unknown
7
5
}
8
6
9
7
interface ImportMetaEnv {
10
8
readonly VITE_IS_CI_BUILD : string
11
- // 다른 환경 변수들에 대한 타입 정의...
12
9
}
13
10
14
11
interface ImportMeta {
You can’t perform that action at this time.
0 commit comments