You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script>functioninlineScript(){alert('inline script running even in SSG mode, loading no external JS! 🎉');}</script><eve-banner></eve-banner><buttononclick="inlineScript()">For a good time, click here.</button><divclass='gwd-content-wrapper'><eve-containerfluid><divclass='gwd-page-template gwd-content'><entry></entry></div></eve-container></div>
However, it appears that this won't work in development mode, as in the case below, the function will be
Details
I guess because all the JS is in memory and not serialized into the page? Though it's there from what I can see in the Elements tab.
Maybe needs to be some sort of global function at the app or index.html level? Outside of a render?
The text was updated successfully, but these errors were encountered:
Type of Change
Summary
As introduced as part of #354 , **strict ** optimization setting eliminates all bundled JavaScript from getting shipped to the browser when set, however, the example provided in the How It Works section is throwing an error in development mode and not working.
However, it appears that this won't work in development mode, as in the case below, the function will be

Details
I guess because all the JS is in memory and not serialized into the page? Though it's there from what I can see in the Elements tab.
Maybe needs to be some sort of global function at the app or index.html level? Outside of a
render
?The text was updated successfully, but these errors were encountered: