rpg-cards-ng/vue.config.js

11 lines
178 B
JavaScript
Raw Permalink Normal View History

module.exports = {
chainWebpack: config => {
config.module
.rule('raw')
.test(/\.txt$/)
.use('raw-loader')
.loader('raw-loader')
.end()
}
}