Skip to content

Instantly share code, notes, and snippets.

@codedrops-io
Created June 18, 2020 14:30
Show Gist options
  • Save codedrops-io/cef0a06dfa3f72af651a9b02f944a7af to your computer and use it in GitHub Desktop.
Save codedrops-io/cef0a06dfa3f72af651a9b02f944a7af to your computer and use it in GitHub Desktop.
Load SASS/SCSS globally in your Vue apps.
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