We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 931e5e5 commit 0776f4eCopy full SHA for 0776f4e
2 files changed
.github/workflows/build-and-deploy.yml
@@ -64,12 +64,6 @@ jobs:
64
cp gui/coi-serviceworker.min.js build/
65
cp gui/main.js build/
66
67
- echo "Build directory structure:"
68
- find build/ -type f -name "*.js" | head -10
69
-
70
- echo "Syslib directory structure:"
71
- ls -la build/syslib/
72
73
- name: Setup GitHub Pages
74
if: github.ref == 'refs/heads/main'
75
uses: actions/configure-pages@v4
gui/index.html
@@ -61,7 +61,7 @@
61
if (isGitHubPages) {
62
// GitHub Pages: 実行時動的インポート
63
const [bootModule, terminalModule, windowModule] = await Promise.all([
- eval('import("/WebVM/build/syslib/index.js")'),
+ eval('import("/WebVM/syslib/index.js")'),
eval('import("/WebVM/terminal.js")'),
eval('import("/WebVM/window-manager.js")')
]);
0 commit comments