Fix inconsistent quotes in Vue config

This commit is contained in:
Kailash Nadh 2020-10-18 23:10:48 +05:30
parent e9bf47b006
commit b054ed5adc
1 changed files with 2 additions and 2 deletions

View File

@ -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'
}
}
}