type App = {
  path: string;
  targetDomain: string;
};

type Config = {
  defaultDomain: string;
  apps: App[];
};