Skip to content

Commit

Permalink
Fix inconsistent quotes in Vue config
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Oct 18, 2020
1 parent e9bf47b commit b054ed5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ module.exports = {
devServer: {
port: process.env.LISTMONK_FRONTEND_PORT || 8080,
proxy: {
"^/api": {
target: process.env.LISTMONK_API_URL || "http://127.0.0.1:9000"
'^/api': {
target: process.env.LISTMONK_API_URL || 'http://127.0.0.1:9000'
}
}
}
Expand Down

0 comments on commit b054ed5

Please sign in to comment.