Hi, I’m trying to make an app that have an issuePanel with Custom UI and a ProjectPage with UI Kit.
My manifest.yml looks like this
But the ProjectPage is not loading the resolver, only the issuePanel is.
This is my project structure
├── src/
│ ├── frontend/
│ │ └── output.jsx
│ ├── resolvers/
│ │ └── epichealth.js
│ │ └── output.js
│ └── index.js
├── static/epichealth
and src/index.js
export { handler as issuePanelHandler} from './resolvers/epichealth';
export { handler as projectPageHandler} from './resolvers/output';
Thanks for your help.