Skip to content

Commit

Permalink
Configure vuejs output as tpl file
Browse files Browse the repository at this point in the history
  • Loading branch information
Clint.Network committed Aug 19, 2019
1 parent d52a8a3 commit 63d0355
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions webui/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.tap(options => {
return options;
});
},
css: {
sourceMap: true
},
// assetsDir: '../../assets/',
indexPath: 'index.tpl'
// outputDir: '../main/resources/',
}

0 comments on commit 63d0355

Please sign in to comment.