Move to parcel

This commit is contained in:
Renan LE CARO 2025-03-05 22:10:17 +01:00
parent c2706d00e7
commit 110f504820
16 changed files with 7665 additions and 513 deletions

View file

@ -236,12 +236,11 @@ document.getElementById('new-level').addEventListener('click', e => {
renderAllLevels()
function save() {
return fetch('/', {
method: 'POST', headers: {
'Content-Type': 'text/plain'
},
body: 'let allLevels=' + JSON.stringify(allLevels, null, 2)
body: JSON.stringify(allLevels, null, 2)
})
}