8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
/**
|
|
* Environment configuration for the Extrudex frontend (production).
|
|
* Override API URL for deployed environments.
|
|
*/
|
|
export const environment = {
|
|
production: true,
|
|
apiBaseUrl: '/api',
|
|
}; |