-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.js
48 lines (46 loc) · 1 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
import preact from "@preact/preset-vite";
import { readFile } from "fs/promises";
import { defineConfig } from "vite";
import mdx from "@mdx-js/rollup";
// https://vite.dev/config/
export default defineConfig({
base: process.env.BASE_URL ?? "/",
plugins: [
preact({
prerender: {
enabled: true,
renderTarget: "#app",
},
}),
preactPages(),
mdx({
jsxImportSource: "preact",
}),
],
});
/**
* @returns {import("vite").Plugin}
*/
function preactPages({ root = "/src/pages" } = {}) {
return {
name: "routes",
enforce: "pre",
resolveId(id) {
if (id !== "~routes") {
return;
}
return "/0~routes";
},
async load(id) {
if (id !== "/0~routes") {
return;
}
const code = (await readFile("./runtime/route.js", "utf8"))
.replaceAll("#{__PLUGIN_PAGES_ROOT}", root + "/**/*.jsx")
.replaceAll("#{__PLUGIN_PAGES_ROOT_REGEX}", `^${root}`);
return {
code,
};
},
};
}