Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Sep 26, 2023
1 parent c8d8564 commit ea86f97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"inlineStyleLanguage": "sass",
"assets": ["src/assets"],
"styles": ["src/styles.sass"],
"scripts": []
"scripts": [],
"baseHref": "/InterSystemsWOOPEditor/"
},
"configurations": {
"production": {
Expand Down
3 changes: 2 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import { TableOfContentComponent } from './table-of-content/table-of-content.com
import { ChapterSearchComponent } from './chapter-search/chapter-search.component';
import { TranslateSpecComponent } from './user-input/translate-spec/translate-spec.component';
import { ConnectViaUrlComponent } from './connect-via-url/connect-via-url.component';
import { HashLocationStrategy, LocationStrategy } from '@angular/common';
@NgModule({
declarations: [
AppComponent,
Expand Down Expand Up @@ -114,7 +115,7 @@ import { ConnectViaUrlComponent } from './connect-via-url/connect-via-url.compon
AppRoutingModule,
SharedModule,
],
providers: [],
providers: [{ provide: LocationStrategy, useClass: HashLocationStrategy }],
bootstrap: [AppComponent],
})
export class AppModule {}

0 comments on commit ea86f97

Please sign in to comment.