You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then I had to do the same for extend.js further down.
Description/Steps to reproduce
Import paper in a dynamically loaded nuxt3 component it works fine the first time, then if you navigate in some pages and come back you get an error 500 defined above
Additional information
Sorry I'm not a javascript nor nuxt3 guru and I don't understand what's wrong
Just want to report it as I lost time to find this bug and if it could be avoided for others it's fine.
thanks for this work tho
The text was updated successfully, but these errors were encountered:
The problem is there again in my new project. It's driving me crazy
If I go directly to the page where the paper is instantiated I got the error (http://localhost:3000/configurator). If I go to home dir first then navigate to the page, it works.
When I use paper in a NUXT 3 component I have the following bug:
[Vue Router warn]: uncaught error during route navigation:
Error: Cannot find module './node/self.js'
So I went to the source code of paper-full.js and had to change the line 35
self = self || require('./node/self.js');
by
self = self || require('paper/dist/node/self.js');
Then I had to do the same for extend.js further down.
Description/Steps to reproduce
Import paper in a dynamically loaded nuxt3 component it works fine the first time, then if you navigate in some pages and come back you get an error 500 defined above
Additional information
Sorry I'm not a javascript nor nuxt3 guru and I don't understand what's wrong
Just want to report it as I lost time to find this bug and if it could be avoided for others it's fine.
thanks for this work tho
The text was updated successfully, but these errors were encountered: