mirror of
https://github.com/coder/code-server.git
synced 2026-06-04 19:39:33 +00: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
|
|
}
|