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
First, thanks for this package and keeping it updated.
I came across some debugging annoyance and managed to resolve it. Sharing the solution here for anyone who might have the same trouble. Also, maybe something to be added to the official guide.
I was getting the following 'uncaught exceptions' while trying to run VS code's debugger over my nuxt-buefy project. Exception has occurred: Error: Can't resolve 'bulma/sass/utilities/__all' Error: Can't resolve 'buefy/src/scss/_buefy'
I was able to fix it using:
// instead of @import '~bulma/sass/utilities/_all';
@import'~/node_modules/bulma/sass/utilities/_all';// instead of @import '~buefy/src/scss/buefy';
@import'~/node_modules/buefy/src/scss/buefy';
The text was updated successfully, but these errors were encountered:
MentalGear
changed the title
VS Code Debug, Can't resolve 'bulma/sass/utilities/__all'
docs: VS Code Debug: Can't resolve 'bulma/sass/utilities/__all'
May 20, 2021
First, thanks for this package and keeping it updated.
I came across some debugging annoyance and managed to resolve it. Sharing the solution here for anyone who might have the same trouble. Also, maybe something to be added to the official guide.
I was getting the following 'uncaught exceptions' while trying to run VS code's debugger over my nuxt-buefy project.
Exception has occurred: Error: Can't resolve 'bulma/sass/utilities/__all'
Error: Can't resolve 'buefy/src/scss/_buefy'
I was able to fix it using:
Repo:
https://github.com/MentalGear/netlify-dev_debug_vs-code
The text was updated successfully, but these errors were encountered: