We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug cannot start the nest project with adminjs installed
Installed libraries and their versions
Reproduce when start the project, it throw a error message: Nest cannot resolved AdminModule
Expected behavior the project should run with adminjs install in nest v8
The text was updated successfully, but these errors were encountered:
When I try to integrate the module in app.module.ts I get the following error:
{"statusCode":404,"message":"Cannot GET /admin","error":"Not Found"}
Is this issue still relevant? I noticed some more recent commits.
Here is my app.module.ts file:
@Module({ imports: [ AdminModule.createAdmin({ adminJsOptions: { rootPath: '/admin', resources: [ ], } }), ArticlesModule, ], controllers: [AppController], providers: [AppService], }) export class AppModule {}
Sorry, something went wrong.
No branches or pull requests
Describe the bug
cannot start the nest project with adminjs installed
Installed libraries and their versions
Reproduce
when start the project, it throw a error message: Nest cannot resolved AdminModule
Expected behavior
the project should run with adminjs install in nest v8
The text was updated successfully, but these errors were encountered: