在使用
flutter build web --no-sound-null-safety
打包flutter到web端时报错:_flutter is not defined
这边的解决办法有一个是将build/web下的index.html中的
<base href="/">
改成
<base href="./">
就可以了。
在使用
flutter build web --no-sound-null-safety
打包flutter到web端时报错:_flutter is not defined
这边的解决办法有一个是将build/web下的index.html中的
<base href="/">
改成
<base href="./">
就可以了。