Does studio.plasmic support BrowserRouter only?

I’m using studio.plasmic to develop projects for a simple web server which only support HashRouter and run on esp32 cpu.I found that studio.plasmic maybe only support BrowserRouter .
1.
when I modified a page’s path, studio.plasmic shown:
erro
2.
When I host studio.plasmic in my projects with HashRouter ,I
open “http://localhost:3000/#/plasmic-host” to see " Your app is ready to host Plasmic Studio!" .From this page’s link " Plasmic Studio", open studio.plasmic.app/projects
well.
Afer configured the project with “http://localhost:3000/#/plasmic-host” and “http://localhost:3000/plasmic-host”,the project open failed.
when configured with "http://localhost:3000/#/plasmic-host” ,the result:

when configured with "http://localhost:3000/plasmic-host” ,the result:

By default, our paths are not meant for hash routing.
However, you don’t need to use our routing system!
You can just use directly in your routing system to render pages.

See here for an example:

Hi ray!
Thanks your answer.
You are right,when I using router on codebase, I can switch pages with HashRouter .
But I have a problem when host Plasmic Studio in my-app:
I used your example:
https://drive.google.com/file/d/1D3Enu6qJxQPC80SOwWTHYvB0-jhE6Pr2/view?usp=sharing

Only modified the file App.tsx line7 from

import { BrowserRouter as Router, Routes, Route, Link } from ‘react-router-dom’;

to

import { HashRouter as Router, Routes, Route, Link } from ‘react-router-dom’;

use url:

http://localhost:3000/#/plasmic-host

I can see:

After configured my-app host url :http://localhost:3000/#/plasmic-host
in url:
https://studio.plasmic.app/projects/8XmSExyDNjn9PPinvnbQCQ

I saw a blank page.

But in your original example ,configured the my-app host url :http://localhost:3000/plasmic-host
the url:
https://studio.plasmic.app/projects/8XmSExyDNjn9PPinvnbQCQ
can open the studio.plasmic.app page:

My question is :
How to host Plasmic project in my app that use my HashRouter router?