Spaces:
Running
Running
Tony Powell
commited on
Commit
Β·
93de5c3
1
Parent(s):
f1e16d2
Flat assets
Browse files- dist/{assets/duckdb-browser-eh.worker-CU4eSUTR.js β duckdb-browser-eh.worker-CU4eSUTR.js} +0 -0
- dist/{assets/duckdb-browser-mvp.worker-CyigcHar.js β duckdb-browser-mvp.worker-CyigcHar.js} +0 -0
- dist/{assets/index-DSjPP0Hm.css β index-DSjPP0Hm.css} +0 -0
- dist/{assets/index-DBxDuz_B.js β index-DhfoEE7l.js} +0 -0
- dist/index.html +2 -2
- package.json +1 -1
- vite.config.ts +3 -0
dist/{assets/duckdb-browser-eh.worker-CU4eSUTR.js β duckdb-browser-eh.worker-CU4eSUTR.js}
RENAMED
File without changes
|
dist/{assets/duckdb-browser-mvp.worker-CyigcHar.js β duckdb-browser-mvp.worker-CyigcHar.js}
RENAMED
File without changes
|
dist/{assets/index-DSjPP0Hm.css β index-DSjPP0Hm.css}
RENAMED
File without changes
|
dist/{assets/index-DBxDuz_B.js β index-DhfoEE7l.js}
RENAMED
File without changes
|
dist/index.html
CHANGED
@@ -6,8 +6,8 @@
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>Vite + React + TS</title>
|
8 |
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
9 |
-
<script type="module" crossorigin src="/
|
10 |
-
<link rel="stylesheet" crossorigin href="/
|
11 |
</head>
|
12 |
<body>
|
13 |
<div id="root"></div>
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>Vite + React + TS</title>
|
8 |
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
9 |
+
<script type="module" crossorigin src="/index-DhfoEE7l.js"></script>
|
10 |
+
<link rel="stylesheet" crossorigin href="/index-DSjPP0Hm.css">
|
11 |
</head>
|
12 |
<body>
|
13 |
<div id="root"></div>
|
package.json
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
"license": "MIT",
|
7 |
"scripts": {
|
8 |
"dev": "vite",
|
9 |
-
"build": "tsc -b && vite build && rimraf dist
|
10 |
"lint": "eslint .",
|
11 |
"preview": "vite preview",
|
12 |
"start": "pnpx http-server --proxy http://localhost:8080\\? dist --cors"
|
|
|
6 |
"license": "MIT",
|
7 |
"scripts": {
|
8 |
"dev": "vite",
|
9 |
+
"build": "tsc -b && vite build && rimraf dist/*.wasm",
|
10 |
"lint": "eslint .",
|
11 |
"preview": "vite preview",
|
12 |
"start": "pnpx http-server --proxy http://localhost:8080\\? dist --cors"
|
vite.config.ts
CHANGED
@@ -10,4 +10,7 @@ export default defineConfig(() => ({
|
|
10 |
"~": path.resolve(__dirname, "src"),
|
11 |
},
|
12 |
},
|
|
|
|
|
|
|
13 |
}));
|
|
|
10 |
"~": path.resolve(__dirname, "src"),
|
11 |
},
|
12 |
},
|
13 |
+
build: {
|
14 |
+
assetsDir: ".",
|
15 |
+
},
|
16 |
}));
|