We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c4d275 commit c8498f0Copy full SHA for c8498f0
.gitignore
@@ -8,7 +8,7 @@ pnpm-debug.log*
8
lerna-debug.log*
9
10
node_modules
11
-# dist
+dist
12
dist-ssr
13
*.local
14
docs/index.html
@@ -3,7 +3,7 @@
3
<head>
4
<meta charset="utf-8" />
5
<title>WebGPU Viewer</title>
6
- <script type="module" crossorigin src="/assets/index-CqiZ_FWI.js"></script>
+ <script type="module" crossorigin src="/WebGPU-Cube/assets/index-CqiZ_FWI.js"></script>
7
</head>
<body style="background-color: rgb(45, 45, 45)">
<canvas id="viewport"></canvas>
vite.config.ts
@@ -0,0 +1,8 @@
1
+import { defineConfig } from "vite";
2
+
+export default defineConfig({
+ base: "/WebGPU-Cube/",
+ build: {
+ outDir: "docs",
+ },
+});
0 commit comments