diff --git a/packages/app/src/pages/index.jsx b/packages/app/src/pages/index.jsx index e4e5a2f6..80b51fc4 100644 --- a/packages/app/src/pages/index.jsx +++ b/packages/app/src/pages/index.jsx @@ -1,5 +1,7 @@ import React from "react" +import config from "config" export default (props) => { - return window.app.setLocation("/main") + window.app.setLocation(config.app?.mainPath ?? "/home") + return
} \ No newline at end of file