Skip to content

Commit

Permalink
Fix some issues with new renderer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro-FA committed Oct 27, 2024
1 parent ba81db2 commit ecc6c09
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multi_env_flutter_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
Wasm:
uses: ./.github/workflows/deploy_flutter_web_to_cloudflare.yml
with:
buildRenderer: default
buildRenderer: auto
deploymentBranch: main
secrets: inherit

Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
"lint:ts": "tsc && eslint scripts",
"lint": "npm run lint:shell && npm run lint:dart && npm run lint:ts",
"test": "flutter test --no-pub",
"build:html": "flutter build web --no-pub --release --no-web-resources-cdn --web-renderer html",
"build:wasm": "flutter build web --no-pub --release --no-web-resources-cdn --wasm",
"build:default": "flutter build web --no-pub --release --no-web-resources-cdn",
"build": "npm run build:${BUILD_RENDERER:-default}",
"postbuild:html": "npm run generate-sitemap -- -o build/web/sitemap.xml && npm run minify:js",
"build:auto": "flutter build web --no-pub --release --web-renderer auto",
"build:wasm": "flutter build web --no-pub --release --wasm",
"build": "npm run build:${BUILD_RENDERER:-auto}",
"postbuild:auto": "npm run generate-sitemap -- -o build/web/sitemap.xml && npm run minify:js",
"postbuild:wasm": "npm run postbuild:html && npm run minify:mjs",
"preserve:release": "npm run build",
"serve:release": "wrangler pages dev --port=${npm_package_config_port}",
Expand Down
1 change: 1 addition & 0 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
<div id="splash-screen">
<img id="splash-screen-logo" src="./icons/Icon-splash.svg" />
</div>
<main></main>
<script>
const scripts = ["flutter_bootstrap.js"];

Expand Down

0 comments on commit ecc6c09

Please sign in to comment.