How to disable SPA on flutter web

I’m using flutter web on flutter ver2, and would like to know how to disable Single Page Application styled development, because I’d like google to index all pages generated with flutter web.

Thanks!

Upvotes: 0

Views: 297

Answers (2)

I've solve by myself with using named root. It was very simple.

Upvotes: 0

Yazeed AlKhalaf
Yazeed AlKhalaf

Reputation: 323

I believe it is not possible currently.

Try looking at the build/web after building for the web. You will see only one HTML file called index.html. There are no literal pages.

Upvotes: 1

Related Questions