Lint
This commit is contained in:
@ -15,7 +15,9 @@ export const VITE_KC_SKIP_AUTH = env.VITE_KC_SKIP_AUTH as string | undefined
|
|||||||
export const VITE_KC_CONNECTION_TIMEOUT_MS =
|
export const VITE_KC_CONNECTION_TIMEOUT_MS =
|
||||||
env.VITE_KC_CONNECTION_TIMEOUT_MS as string | undefined
|
env.VITE_KC_CONNECTION_TIMEOUT_MS as string | undefined
|
||||||
export const VITE_KC_DEV_TOKEN = env.VITE_KC_DEV_TOKEN as string | undefined
|
export const VITE_KC_DEV_TOKEN = env.VITE_KC_DEV_TOKEN as string | undefined
|
||||||
export const VITE_KC_KCL_SAMPLES_REF = env.VITE_KC_KCL_SAMPLES_REF as string | undefined
|
export const VITE_KC_KCL_SAMPLES_REF = env.VITE_KC_KCL_SAMPLES_REF as
|
||||||
|
| string
|
||||||
|
| undefined
|
||||||
export const PROD = env.PROD as string | undefined
|
export const PROD = env.PROD as string | undefined
|
||||||
export const TEST = env.TEST as string | undefined
|
export const TEST = env.TEST as string | undefined
|
||||||
export const DEV = env.DEV as string | undefined
|
export const DEV = env.DEV as string | undefined
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { VITE_KC_KCL_SAMPLES_REF } from "env"
|
import { VITE_KC_KCL_SAMPLES_REF } from 'env'
|
||||||
|
|
||||||
export const APP_NAME = 'Modeling App'
|
export const APP_NAME = 'Modeling App'
|
||||||
/** Search string in new project names to increment as an index */
|
/** Search string in new project names to increment as an index */
|
||||||
@ -107,8 +107,7 @@ export const MAKE_TOAST_MESSAGES = {
|
|||||||
|
|
||||||
/** The URL for the KCL samples manifest files */
|
/** The URL for the KCL samples manifest files */
|
||||||
export const KCL_SAMPLES_MANIFEST_URLS = {
|
export const KCL_SAMPLES_MANIFEST_URLS = {
|
||||||
remote:
|
remote: `https://raw.githubusercontent.com/KittyCAD/kcl-samples/${VITE_KC_KCL_SAMPLES_REF}/manifest.json`,
|
||||||
`https://raw.githubusercontent.com/KittyCAD/kcl-samples/${VITE_KC_KCL_SAMPLES_REF}/manifest.json`,
|
|
||||||
localFallback: '/kcl-samples-manifest-fallback.json',
|
localFallback: '/kcl-samples-manifest-fallback.json',
|
||||||
} as const
|
} as const
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user