(href)
| 19 | }; |
| 20 | |
| 21 | const loadCSS = (href) => { |
| 22 | const el = document.createElement("link"); |
| 23 | el.rel = "stylesheet"; |
| 24 | el.href = href; |
| 25 | document.head.appendChild(el); |
| 26 | }; |
| 27 | |
| 28 | const bootDev = () => { |
| 29 | loadCSS(`${DEV_ORIGIN}/build/main.css`); |