[WEB] When using the Firebase hosting. Failed to read variables from .env file.
Issue
When using the Firebase hosting. Failed to read variables from .env file.
I thought it was solved in https://github.com/java-james/flutter_dotenv/issues/28#issuecomment-845602009 issue by @java-james , but there is still a problem.

When I change the file name to dotenv referring to the same issue(https://github.com/java-james/flutter_dotenv/issues/28), a different error is printed.
My Code:
void main() async {
await dotenv.load(fileName: "dotenv");
...
runApp(const MyApp());
}

The cause of the error was found when setting the environment variable with the dotenv file.

This error occurs when I create it in this way.
SOME_ENV=abcdefg
But if I write it like this, it works normally.
SOME_ENV='abcdefg'
I am having this error when using this plugin, took me 4 hours to know it was this plugin as the error has a bad description.
I have my variables like
SOME_ENV=abcdefg
and changing them to
SOME_ENV='abcdefg'
doesn't work, the only solution that I have right now is to not use the plugin on web.
Still no updates ????
The cause of the error was found when setting the environment variable with the
dotenvfile.
This error occurs when �I create it in this way.
SOME_ENV=abcdefgBut if I write it like this, it works normally.
SOME_ENV='abcdefg'
This also does not help for me