chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / src / assets / config.ts
CommitLineData
66a7748d 1import type { BaseConfig } from '@/types'
32de5a57
LM
2
3const config: BaseConfig = {
6a619cce 4 uiServer: {
32de5a57
LM
5 host: 'localhost',
6 port: 8080,
66a7748d
JB
7 protocol: 'ui0.0.1'
8 }
9}
32de5a57 10
66a7748d 11export default config