This also refactors a couple CSS stylesheets to be referenced directly in the HTML files. And it removes any CSS imports from src/browser files.
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { getOptions } from "../../common/util"
|
|
import "../register"
|
|
|
|
const options = getOptions()
|
|
const el = document.getElementById("base") as HTMLInputElement
|
|
if (el) {
|
|
el.value = options.base
|
|
}
|