littleAnt
littleAnt

Reputation: 323

how to disable Umi UI bubble in Ant Design Pro?

I am new with Ant Design Pro, I get project from git repo of Ant Design and I want to disable/hide Umi UI bubble on display. I refered to many pages and Google but It did not work for me. It taught me that created an .env and added line of code UMI_UI=none umi dev.

My problem is described with below picture

enter image description here

Upvotes: 0

Views: 1061

Answers (3)

Charith Jayasanka
Charith Jayasanka

Reputation: 4802

It is only run when you're running the app in dev mode. It is not included in the production build, therefore it won't be an issue. You can use it for various quick actions like fetching blocks, templates.

Upvotes: 2

Tanmaya Sahu
Tanmaya Sahu

Reputation: 26

change package.json "start": "cross-env UMI_UI=none umi dev"

Upvotes: 1

afc163
afc163

Reputation: 1716

You can try UMI_UI=none npm start

Upvotes: 0

Related Questions