Skip to content

Instantly share code, notes, and snippets.

@learntheropes
Last active September 17, 2019 14:57
Show Gist options
  • Save learntheropes/19d7d51d761b316447461e9acf47075f to your computer and use it in GitHub Desktop.
Save learntheropes/19d7d51d761b316447461e9acf47075f to your computer and use it in GitHub Desktop.
sass in nuxtjs with bulma
npm install --save-dev @nuxtjs/style-resources sass-loader node-sass
/* assets/main.scss */
@import "~bulma/sass/utilities/_all.sass";
@import "~assets/style.scss";
@import "~bulma/bulma";
export default {
modules: [
'@nuxtjs/style-resources',
'@nuxtjs/bulma'
],
styleResources: {
scss: [
'~assets/main.scss',
],
}
}
/* assests/style.scss */
$primary: red;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment