Remove invalid icon reference

This commit is contained in:
2024-07-20 15:26:36 +09:30
parent d78a416d92
commit fbc3b60dc7
2 changed files with 7 additions and 20 deletions

View File

@@ -5,16 +5,15 @@ import {
} from '@angular/core';
import { provideRouter } from '@angular/router';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import { routes } from './app.routes';
import hljs from 'highlight.js/lib/core';
import json from 'highlight.js/lib/languages/json';
import {
MAT_ICON_DEFAULT_OPTIONS,
MatIconRegistry,
} from '@angular/material/icon';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import hljs from 'highlight.js/lib/core';
import json from 'highlight.js/lib/languages/json';
import { provideMonacoEditor } from 'ngx-monaco-editor-v2';
import { provideHttpClient } from '@angular/common/http';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [
@@ -44,6 +43,5 @@ export const appConfig: ApplicationConfig = {
useValue: { fontSet: 'material-symbols-rounded' },
},
provideMonacoEditor(),
provideHttpClient(),
],
};