refactor(ui): cleanup configuration types and variables namespace
[e-mobility-charging-stations-simulator.git] / ui / web / src / assets / config.ts
1 import type { ConfigurationData } from '@/types'
2
3 const configuration: ConfigurationData = {
4 uiServer: {
5 host: 'localhost',
6 port: 8080,
7 protocol: 'ui0.0.1'
8 }
9 }
10
11 export default configuration