chore: copy .data file directly, remove locateFile step

This commit is contained in:
2023-09-11 18:27:25 -05:00
parent 03b2c5a659
commit 538cf1efb5
2 changed files with 1 additions and 9 deletions

View File

@@ -7,12 +7,6 @@
<canvas id="canvas"></canvas>
<script>
var Module = {
'locateFile': function (path, prefix) {
if (path.endsWith(".data")) {
return prefix + "deps/" + path;
}
return prefix + path;
},
'canvas': document.getElementById('canvas'),
};
</script>