Fix import path

This commit is contained in:
Booteille 2024-11-16 10:23:23 +01:00
parent 2dd5ae5def
commit 46714d4c92
No known key found for this signature in database
GPG Key ID: 0AB6C6CA01272646
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// vim:set sw=4 ts=4 sts=4 ft=javascript expandtab: // vim:set sw=4 ts=4 sts=4 ft=javascript expandtab:
import { lufi } from "/js/lufi.js"; import { lufi } from "./lufi.js";
const abortedDOM = document.createElement("div"); const abortedDOM = document.createElement("div");
abortedDOM.innerHTML = `<h4>${i18n.aborted1}</h4> abortedDOM.innerHTML = `<h4>${i18n.aborted1}</h4>

View File

@ -6,7 +6,7 @@ import {
ResultAsync, ResultAsync,
isSecureContext, isSecureContext,
CryptoAlgorithm, CryptoAlgorithm,
} from "/js/lufi.js"; } from "./lufi.js";
// Global zip objects for currently created zip file // Global zip objects for currently created zip file
let zipSize = 0; let zipSize = 0;