fix: use inbuilt frontend dev server to proxy API
Vue's inbuilt dev server can be configured to proxy API for development instead of directing developers to setup Nginx proxy. Additionally this commit also adds an option to configure frontend port on which dev server runs. Sample env config file is under `frontend/.env.sample`, it can be copied to either `frontend/.env` or `frontend/.env.local`. Available options are LISTMONK_FRONTEND_PORT - Configure frontend dev server port (defaults to 8080) LISTMONK_API_URL - Configure API server URL (defaults to http://127.0.0.1:9000) Since env variables are sourced to current session we are prefixing it with `LISTMONK_`.
This commit is contained in:
parent
23d479e9c1
commit
6c234f1b1d
2 changed files with 11 additions and 0 deletions
2
frontend/.env.sample
vendored
Normal file
2
frontend/.env.sample
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
LISTMONK_FRONTEND_PORT=8080
|
||||
LISTMONK_API_URL="http://127.0.0.1:9000"
|
9
frontend/vue.config.js
vendored
9
frontend/vue.config.js
vendored
|
@ -14,4 +14,13 @@ module.exports = {
|
|||
|
||||
productionSourceMap: false,
|
||||
filenameHashing: true,
|
||||
|
||||
devServer: {
|
||||
port: process.env.LISTMONK_FRONTEND_PORT || 8080,
|
||||
proxy: {
|
||||
"^/api": {
|
||||
target: process.env.LISTMONK_API_URL || "http://127.0.0.1:9000"
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue