Tutorial

How to Customize Vue Webpack Loaders

Published on May 7, 2017
Default avatar

By Joshua Bemenderfer

How to Customize Vue Webpack Loaders

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

One of the most unique features of Vue is the built-in support for other languages and pre-processors in .vue single-file-components. This allows you to use whatever pre-processor you’d like so long as it has an available webpack loader. Often the defaults are enough, but here we’ll show you how to add a new language (sort of) to Vue, and configure other ones.

Configuration

This assumes you’ve already got a basic Webpack config ready. (If not, use vue-cli’s webpack-simple template.)

Once you’ve got a basic build ready, open up your webpack.config.js or similar, and look for the vue-loader options.

webpack.config.js
...
{
  test: /\.vue$/,
  loader: 'vue-loader',
  options: {
  }
},
...

Now, for a given block in your template, Vue will attempt to find the matching loader for the language. ie. SASS becomes sass-loader and LESS -> less-loader. That’s all well and good, but often people want to use SCSS. And there’s no such thing as scss-loader.

Thankfully, vue-loader allows you to override the loader used for any language, and even add new languages.

We can add in support for SCSS using:

...
{
  test: /\.vue$/,
  loader: 'vue-loader',
  options: {
    loaders: {
      scss: {
        loader: 'sass-loader'
      }
    }
  }
},
...

And use it:

<template>
  ...
</template>

<style lang="scss">
  .i {
    &.can {
      &.use {
        &.scss {
          color: red;
        }
      }
    }
  }
</style>

If we want two separate configurations of the same loader, we can do that too. Let’s create a “new language” that is really just another configuration of scss-loader.

...
{
  test: /\.vue$/,
  loader: 'vue-loader',
  options: {
    loaders: {
      scss: {
        loader: 'sass-loader'
      },

      newscss: {
        loader: 'sass-loader',
        options: {
          includePaths: ['../../../somewhere/far/far/away']
        }
      }
    }
  }
},
...

And use it:

<template>
  ...
</template>

<style lang="newscss">
  @import 'starwars-styles';

  .i {
    &.can {
      &.use {
        &.scss {
          color: $font-color;
        }
      }
    }
  }
</style>

This pattern can be used with almost any other webpack loader. The only requirements are that loaders for scripts output valid JavaScript, loaders for styles output valid CSS, and loaders for HTML output valid HTML partials and handle vue-style attributes correctly. As a result, it’s trivial to use almost any pre-processor in Vue. Enjoy!

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Joshua Bemenderfer

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel