-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
50 lines (47 loc) · 1.18 KB
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { fileURLToPath, URL } from "node:url";
import { copyFile, mkdir } from "fs/promises";
import { join } from "path";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import VueDevTools from "vite-plugin-vue-devtools";
// https://vitejs.dev/config/
export default defineConfig({
optimizeDeps: { exclude: ["pyodide"] },
plugins: [
{
name: "vite-plugin-pyodide",
generateBundle: async () => {
const assetsDir = "dist/assets";
await mkdir(assetsDir, { recursive: true });
const files = [
"pyodide-lock.json",
"pyodide.asm.js",
"pyodide.asm.wasm",
"python_stdlib.zip",
];
for (const file of files) {
await copyFile(
join("node_modules/pyodide", file),
join(assetsDir, file)
);
}
},
},
vue(),
VueDevTools(),
],
base: "/vue/",
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
// 给大家表演一手精神分裂.jpg
experimental: {
renderBuiltUrl(_, { type }) {
if (type === "asset") {
return { relative: true };
}
},
},
});