How can I disable web support in Flutter?

Viewed 25108

I recently ran this command to try web support out in Flutter:

flutter config --enable-web

Now, every project I make has a web folder and inside is an index.html. Is there any way I can disable that for future projects and is it safe for me to just delete the folder and carry on?

1 Answers
flutter config --no-enable-web

if you try to type flutter config in terminal you will see all options

Related