Is it possible to track source styles definition (sass, scss) in Vue while developing?
Is it possible to track source styles definition (sass, scss) in Vue while developing? I'm trying to import styles from external libraries and still keep original reference to it's original library name. In classic HTML I would create a <style> to minified css in index.html , but I need to make customizations and so I must use those library's source scss , i.e Bulma. <style> css index.html scss I need this so I can keep using Chrome's developer tools and see from where the inspected element's styles are coming from and change it at the source or override if needs to be. Example: app.vue: <style lang="scss"> @import "styles/app.scss"; </style> app.scss: @charset "utf-8"; // Import Bulma's core @import "~bulma/sass/utilities/_all"; // Custom @import "variables"; // Import Bulma and Buefy styles @import "~bulma"; @import "~buefy/src/scss/buefy"; // Mixed overrides @imp...