Created
June 18, 2020 14:30
-
-
Save codedrops-io/cef0a06dfa3f72af651a9b02f944a7af to your computer and use it in GitHub Desktop.
Load SASS/SCSS globally in your Vue apps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
css: { | |
loaderOptions: { | |
scss: { | |
prependData: ` | |
@import '~@/scss-directory/file.scss'; | |
@import '@/scss-directory/another-file.scss'; | |
` | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment