Chrome コンソールに表示されるエラー:
1. http://localhost:3000/vendor/@ngrx/store/index.js
Failed to load resource: the server responded with a status of 404 (Not Found)
2. localhost/:19 Error: Error: XHR error (404 Not Found)
loading http://localhost:3000/vendor/@ngrx/store/index.js(…)
(anonymous function) @ localhost/:19
reducer.ts: *something1 の戻り値の型と状態型の適切な型が見つかりません。
import { Action} from '@ngrx/store';
export const something1 = (state: any = {}, action:Action) => {
switch (action.type) {
default:
return state;
}
};
main.ts: "provideStore({something1})" を削除すると、アプリが動作するようになります
import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
import { disableDeprecatedForms, provideForms } from '@angular/forms';
import {AccountService} from "./account.service";
import {provideStore} from '@ngrx/store';
import {something1} from "./reducer";
bootstrap(AppComponent, [
AccountService,
disableDeprecatedForms(),
provideForms(),
provideStore({something1})
])
.catch((err: any) => console.error(err));