Refactor vue.config.js for DomHandler.js and ObjectUtils.js

Use domhandler.* instead of domhandler.default.*
pull/12/head
mertsincan 2019-05-24 17:40:28 +03:00
parent fb23ad37ff
commit d07ec90b7c
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? '/primevue' : '/',
productionSourceMap: false
productionSourceMap: false,
configureWebpack: {
output: {
libraryExport: 'default'
}
}
}