Skip to content

Commit

Permalink
Refactor strings to template literals in Presto UI
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunxuTang authored and zhenxiao committed May 22, 2020
1 parent 954e471 commit 1bceed1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions presto-main/src/main/resources/webapp/src/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
/* global __dirname */

module.exports = {
entry: {
'index': __dirname +'/index.jsx',
'query': __dirname +'/query.jsx',
'plan': __dirname +'/plan.jsx',
'embedded_plan': __dirname +'/embedded_plan.jsx',
'stage': __dirname +'/stage.jsx',
'worker': __dirname +'/worker.jsx',
'index': `${__dirname}/index.jsx`,
'query': `${__dirname}/query.jsx`,
'plan': `${__dirname}/plan.jsx`,
'embedded_plan': `${__dirname}/embedded_plan.jsx`,
'stage': `${__dirname}/stage.jsx`,
'worker': `${__dirname}/worker.jsx`,
},
mode: "development",
module: {
Expand Down

0 comments on commit 1bceed1

Please sign in to comment.