mirror of
https://github.com/coder/code-server.git
synced 2026-05-06 20:41:59 +02:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { getOptions } from "../../common/util"
|
|
|
|
const options = getOptions()
|
|
const el = document.getElementById("base") as HTMLInputElement
|
|
if (el) {
|
|
el.value = options.base
|
|
}
|