Skip to content

Commit

Permalink
Fix index template not adapted to new build output
Browse files Browse the repository at this point in the history
  • Loading branch information
buehlefs committed Sep 2, 2024
1 parent e7bbec8 commit 1462bed
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions muse_for_music/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,9 @@
</script>
<m4m-root class="h-100 flex flex-column"></m4m-root>

<script src="{{ static_url_for('static', filename='runtime-es2015.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='runtime-es5.js') }}" nomodule defer nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='polyfills-es2015.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='polyfills-es5.js') }}" nomodule defer nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='vendor-es2015.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='vendor-es5.js') }}" nomodule defer nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='main-es2015.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='main-es5.js') }}" nomodule defer nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='runtime.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='polyfills.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
<script src="{{ static_url_for('static', filename='main.js') | bustcache }}" type="module" nonce="{{nonce}}"></script>
</body>

</html>

0 comments on commit 1462bed

Please sign in to comment.