angular/src/environments/environment.ts
AleksanderBodurri 0fe26a646e build(devtools): migrate shell-chrome to bazel
Allows shell-chrome to be built with bazel. Currently this is built in production mode with terser minified code and the appropriate manifest and content script files to make the chrome extension work properly.
2021-11-10 12:30:54 -05:00

13 lines
398 B
TypeScript

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
export const environment = {
production: false,
process: {
env: {
// todo(aleksanderbodurri): when devtools is merged into the main angular repo,
// use stamping tooling to inject the latest SHA into the environment
LATEST_SHA: '',
},
},
animationModule: BrowserAnimationsModule,
};