Advertisement
Guest User

Untitled

a guest
May 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. module.exports = {
  2. module: {
  3. rules: [
  4. // ... other rules omitted
  5.  
  6. // this will apply to both plain `.scss` files
  7. // AND `<style lang="scss">` blocks in `.vue` files
  8. {
  9. test: /\.scss$/,
  10. use: [
  11. 'vue-style-loader',
  12. 'css-loader',
  13. 'sass-loader'
  14. ]
  15. }
  16. ]
  17. },
  18. // plugin omitted
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement