krokyze / flutter_seo

Flutter package for SEO support on Web.
MIT License
48 stars 5 forks source link

HTML Script creates error in console #40

Closed loic-hamdi closed 10 months ago

loic-hamdi commented 11 months ago

Adding this code:

<script>
  if (bot) {
    window.flutterWebRenderer = "html";
  }
</script>

Creates this console error: ReferenceError: Can't find variable: bot

krokyze commented 10 months ago

That's just short example, the full example is in the url:

To improve initial page load speed for bots you can force HTML renderer which is 2MB smaller in download size than CanvasKit. Full example here.

<script>
  if (bot) {
    window.flutterWebRenderer = "html";
  }
</script>