-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
44 lines (43 loc) · 1.27 KB
/
index.ts
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
import { execSync } from "child_process";
import fs from "fs";
import path from "path";
export default function txtIntegration() {
return {
name: "@astrojs/php",
hooks: {
"astro:config:setup": ({ addRenderer, updateConfig }) => {
updateConfig({
vite: {
plugins: [
{
name: "vite-plugin-php", // Name your plugin
transform(src: string, id: string) {
if (id.endsWith(".php")) {
const contents = execSync(`php -f ${id}`, {
encoding: "utf-8",
})
.replaceAll(/[\r\n]+/g, " ")
.trim();
return {
code: `export default function Component(props) { return "${contents}"; }`,
map: null, // No need for source maps in this case
};
}
},
},
],
resolve: {
extensions: [".php"],
},
},
});
addRenderer({
name: "@astrojs/php",
contentType: "text/plain",
clientEntrypoint: null,
serverEntrypoint: "@astrojs/php/server.ts",
});
},
},
};
}