Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export { PlaygroundModule as AppModule } from 'angular-playground';
import { initializePlayground } from 'angular-playground';
export const environment = {
production: false
};
initializePlayground('ng-app');
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { PlaygroundModule, initializePlayground } from 'angular-playground';
if (process.env.ENV === 'production') {
enableProdMode();
}
initializePlayground('my-app');
platformBrowserDynamic().bootstrapModule(PlaygroundModule);