1. Running with yarn ``` yarn && yarn serve ```
npm install daemonxcx-explorer1. Running with yarn
```
yarn && yarn serve
2. Building for web servers, like nginx, apache
``
yarn && yarn build
cp -r ./dist/*
1. Set enable = true in ./config/app.toml`
###############################################################################$3
###############################################################################
[api]
2. add proxy server and enable CORS. NOTE: You must enable https as well.
`
server {
server_name juno.api.ping.pub;
listen 443;
location / {
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Max-Age 3600;
add_header Access-Control-Expose-Headers Content-Length; proxy_pass http://:1317;
}
}
``