Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated manifest file #1678

Merged
merged 9 commits into from
Jan 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
undone some changes
TheSlimvReal committed Jan 25, 2023
commit 89aadfbbc0f434095b3f9f6973c92c948cc5bed0
3 changes: 2 additions & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -59,7 +59,8 @@ ARG SENTRY_ORG
ARG SENTRY_PROJECT
RUN if [ "$SENTRY_AUTH_TOKEN" != "" ] ; then \
npm install -g @sentry/cli &&\
sentry-cli --auth-token=$SENTRY_AUTH_TOKEN releases --org=$SENTRY_ORG --project=$SENTRY_PROJECT files ndb-core@$APP_VERSION upload-sourcemaps dist ; fi
sentry-cli --auth-token=$SENTRY_AUTH_TOKEN releases --org=$SENTRY_ORG --project=$SENTRY_PROJECT files ndb-core@$APP_VERSION upload-sourcemaps dist && \
rm dist/*.map ; fi

### PROD image

3 changes: 0 additions & 3 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -84,9 +84,6 @@ import { TodosModule } from "./features/todos/todos.module";
// Global Angular modules
ServiceWorkerModule.register("ngsw-worker.js", {
enabled: environment.production,
// Register the ServiceWorker as soon as the application is stable
// or after 30 seconds (whichever comes first).
registrationStrategy: "registerWhenStable:30000",
}),
Angulartics2Module.forRoot({
developerMode: !environment.production,