2022-08-26 11:45:14 +02:00
|
|
|
import {} from './header.entrypoint.js'
|
2022-09-09 15:27:00 +02:00
|
|
|
import Config from './Config.root.svelte'
|
2022-08-26 11:45:14 +02:00
|
|
|
|
2022-09-09 15:27:00 +02:00
|
|
|
new Config({
|
2022-08-26 11:45:14 +02:00
|
|
|
target: document.getElementById('svelte-app'),
|
|
|
|
props: {
|
2024-07-04 17:30:16 +02:00
|
|
|
isAdmin: isAdmin,
|
2025-01-21 18:35:03 +01:00
|
|
|
isSupport: isSupport,
|
2024-07-04 17:30:16 +02:00
|
|
|
isApi: isApi,
|
2024-11-27 10:50:11 +01:00
|
|
|
username: username,
|
|
|
|
ncontent: ncontent,
|
2022-08-26 11:45:14 +02:00
|
|
|
},
|
|
|
|
context: new Map([
|
2024-09-24 11:13:39 +02:00
|
|
|
['cc-config', clusterCockpitConfig],
|
|
|
|
['resampling', resampleConfig]
|
2022-08-26 11:45:14 +02:00
|
|
|
])
|
|
|
|
})
|