Setting base-href on build Flutter Web

Viewed 2118

how do i set the base href on build? I tried

--base-href /path/
--base-href=/path/
--base-href="/path/"
--base-href='/path/'

and none works

it keeps telling me base-href should start and end with /

1 Answers

This does the trick...

flutter build web --base-href "/path/"
Related