-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
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
Error: Can't resolve 'null', Redoc Standalone #930
Comments
|
Unfortunatelly, this time webpack gave "Can't resolve 'styled-components' and 'mobx' errors. Then, I installed "react react-dom mobx@^4.2.0 styled-components" packages. Rewrite my code and I got an error as follows; react.development.js?72d0:388 Uncaught (in promise) TypeError: Cannot set property 'props' of undefined I try to use redoc at my vue project. Is there any other option to use with vue? |
I came up with a workaround that allowed me to embed the redoc component in an Angular7 app. I posted it in this issue thread. |
Hello
I am using redoc version 2.0.0-rc.8-1.
My code;
import redoc from "redoc/bundles/redoc.standalone";
redoc.init(this.swaggerObj, {
scrollYOffset: 50
}, document.getElementById('redoc-container'))
I also tried import as { RedocStandalone }, { init } and { Redoc } , but didn't work.
I got this browser error;
redoc.standalone.js?1c32:7 Uncaught Error: Cannot find module 'null'
at webpackMissingModule (redoc.standalone.js?1c32:7)
at eval (redoc.standalone.js?1c32:7)
at eval (redoc.standalone.js?1c32:7)
at Object../node_modules/redoc/bundles/redoc.standalone.js (build.js:15642)
at webpack_require (build.js:20)
at eval (Documentation.vue?3a40:10)
at Object../node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./src/components/api-detail/Documentation.vue?vue&type=script&lang=js& (build.js:1399)
at webpack_require (build.js:20)
at eval (Documentation.vue?7f4d:1)
at Module../src/components/api-detail/Documentation.vue?vue&type=script&lang=js& (build.js:18278)
What I'm doing wrong there?
Thanks for your help.
The text was updated successfully, but these errors were encountered: