[Vuejs]-How to use external scss files in NativeScript-Vue

0👍

Webpack comes configured with some aliases that point to the root folder of your project. Try @import "app/styles/generalStyles"; or @import "~/styles/generalStyles"; or import from a relative path.

Leave a comment