Last active
February 18, 2019 04:56
-
-
Save ktsn/c6d8ed00e7b036b61174558a1b8f75e8 to your computer and use it in GitHub Desktop.
Inject vue-media-loader to Vue CLI webpack config
This file contains 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 = { | |
chainWebpack: webpackConfig => { | |
// prettier-ignore | |
webpackConfig.module | |
.rule('css') | |
.oneOfs.values().forEach(rule => { | |
rule | |
.use('vue-media') | |
.loader('vue-media-loader') | |
.after('postcss-loader') | |
}) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment