0👍
✅
Posting for future reference if anyone is experiencing similar issues getting SCSS files imported to their nativescript vue templates, my solution involved absolute paths and the vue-cli-plugin-sass-resources plugin.
// vue.config.js
module.exports = {
pluginOptions: {
sassResources: {
resources: path.resolve(__dirname, './src/styles/global.scss'),
},
},
}
Source:stackexchange.com