[Vuejs]-Has anyone gotten vue-cli and sass-loader to successfully import their CSS loaders on native? (vue-cli-plugin-nativescript-vue)

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'),
        },
    },
}

Leave a comment