Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 453 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 453 Bytes

ethereum2-control-center-web

developer setup

ethereum2-control-center-web/frontend/vue.config.js

add:

module.exports = {
  publicPath: "/public/",
  devServer: {
    proxy: {
      "/api": {
        target: "http://localhost:8082/",
        logLevel: "debug",
        changeOrigin: true
      }
    }
    }
};

ethereum2-control-center-web/frontend/public/index.html

replace:

      window.ENTRY = '/control-center';