8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
export interface Config {
|
||
|
server_address: string;
|
||
|
}
|
||
|
|
||
|
export const config: Config = {
|
||
|
server_address: import.meta.env.VITE_SERVER_ADDRESS,
|
||
|
};
|