Created
February 18, 2019 13:16
-
-
Save SilencerWeb/6a14bd272f5a94e180d6b27a89a3e426 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = { | |
outputDir: 'wwwroot', | |
devServer: { | |
proxy: 'http://localhost:5000', | |
}, | |
lintOnSave: false, | |
chainWebpack: (config) => { | |
const svgRule = config.module.rule('svg'); | |
svgRule.uses.clear(); | |
svgRule | |
.use('vue-svg-loader') | |
.loader('vue-svg-loader'); | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment