I have implemented a WebView2 component in our software, using C++/Win32. There can be multiple of these webviews. Should I create a new WebView2 environment for each one, or reuse it?
Currently I'm making a new environment for each view (using CreateCoreWebView2EnvironmentWithOptions). It "seems" fine, but I wondered if it wastes resources e.g extra browser processes. I couldn't find any guidance in the help.
Edit to clarify: the data folder for all of the webviews will be the same.