12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
|
export type Environment = {
|
||
|
/** The URL to resources such as the files in the `public` directory. */
|
||
|
resourceUrl: string;
|
||
|
};
|
||
|
|
||
|
// The default environment, used during development.
|
||
|
const defaultEnvironment: Environment = {
|
||
|
resourceUrl: "http://localhost:8080",
|
||
|
};
|
||
|
|
||
|
export { defaultEnvironment as environment };
|