

If you have the ng tool installed globally, you can run any of its commands. In a command prompt, switch to the ClientApp subdirectory: cd ClientApp

The app created by the template contains a Bootstrap-based layout and a basic routing example. There are slight differences between the Angular app created by this template and the one created by Angular CLI itself (via ng new) however, the app's capabilities are unchanged. See the official Angular documentation for more information. The ClientApp directory contains a standard Angular CLI app. The Angular app, residing in the ClientApp subdirectory, is intended to be used for all UI concerns. The ASP.NET Core app is intended to be used for data access, authorization, and other server-side concerns. The project template creates an ASP.NET Core app and an Angular app. On the first run, the build process restores npm dependencies, which can take several minutes. Run dotnet build to verify the app builds correctly. On Linux or macOS, run export ASPNETCORE_ENVIRONMENT=Development. On Windows (in non-PowerShell prompts), run SET ASPNETCORE_ENVIRONMENT=Development. Subsequent builds are much faster.Įnsure you have an environment variable called ASPNETCORE_ENVIRONMENT with a value of Development. The build process restores npm dependencies on the first run, which can take several minutes. csproj file, and run the app as normal from there. NgxsModule.forRoot(), NgxsLoggerPluginModule.forRoot(), NgxsReduxDevtoolsPluginModule.forRoot()ĭoes anyone have any idea on how this could be solved, please? I tried a lot of things already, such as restarting VSCode and deleting node_modules and running npm i again, to no results.Open the generated. 'NgxsReduxDevtoolsPluginModule' does not appear to be an NgModule class. 'NgxsLoggerPluginModule' does not appear to be an NgModule class. 'NgxsRootModule' does not appear to be an NgModule class. The tutorial said to install ngxs store and other dependencies, and I did with: npm install -save īut after doing that, my code will not work and says there is a problem with my :

I am trying to learn NGXS and, therefore, following a tutorial.
