mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Adding Content-Security-Policy Headers and auto-generating integrity hashes * created favicon and WASM loader as their own files * adding .map files from bootstrap
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
// loads the module which loads the WASM. It's loaders all the way down.
|
|
import init, { run_app } from '/pkg/kanidmd_web_ui.js';
|
|
async function main() {
|
|
await init('/pkg/kanidmd_web_ui_bg.wasm');
|
|
run_app();
|
|
}
|
|
main() |