/** * Copyright 2020-2025 New Relic, Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ /** * @file This file exposes CDN build environment variables. These variables will * be overridden with babel. */ /** * Exposes the version of the agent */ export const VERSION: string | undefined; /** * Exposes the build type of the agent * Valid values are LOCAL, PROD, DEV */ export const BUILD_ENV: string | undefined; /** * Exposes the distribution method of the agent */ export const DIST_METHOD: "CDN"; export const RRWEB_PACKAGE_NAME: "@newrelic/rrweb"; export const RRWEB_VERSION: string | undefined; //# sourceMappingURL=env.cdn.d.ts.map