File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11VUE_APP_OBLYK_API_URL = ' http://localhost:3000'
22VUE_APP_OBLYK_APP_URL = ' http://localhost:4500'
3+ VUE_APP_OBLYK_APP_HOST = ' localhost'
34VUE_APP_OBLYK_APP_PORT = 4500
45VUE_APP_OBLYK_API_CABLE_URL = ' ws://localhost:3000/cable'
56VUE_APP_OBLYK_API_ACCESS_TOKEN = ' oblyk-api-access-token'
Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ Install npm dependencies:
5555 npm install
5656```
5757
58+ Set VUE_APP_OBLYK_APP_HOST in the .env file:
59+
60+ ``` shell
61+ echo " VUE_APP_OBLYK_APP_HOST='localhost'" >> .env
62+ ```
63+
5864Start the development server
5965
6066``` shell
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ require('dotenv').config()
44export default {
55 server : {
66 port : process . env . VUE_APP_OBLYK_APP_PORT ,
7- host : process . env . VUE_APP_OBLYK_APP_HOST ?? 'localhost'
7+ host : process . env . VUE_APP_OBLYK_APP_HOST
88 } ,
99
1010 // Global page headers: https://go.nuxtjs.dev/config-head
You can’t perform that action at this time.
0 commit comments