Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bundle flutter.js via esbuild #47573

Merged
merged 7 commits into from
Nov 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restructure variable definition to not get minified.
  • Loading branch information
eyebrowsoffire committed Nov 2, 2023
commit da993ac54ec1d87ed1da2edde0c3a8459d655c89
3 changes: 2 additions & 1 deletion lib/web_ui/flutter_js/src/flutter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

var _flutter = window._flutter;
if (!_flutter) {
var _flutter = {};
_flutter = window._flutter = {};
}
_flutter.loader = null;

Expand Down