mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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.
13 lines
398 B
TypeScript
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,
|
|
};
|