mirror of
https://github.com/kou029w/_.git
synced 2025-02-07 09:38:46 +00:00
24 lines
668 B
JavaScript
24 lines
668 B
JavaScript
|
import fastifyStatic from "@fastify/static";
|
||
|
import { fileURLToPath } from "node:url";
|
||
|
|
||
|
/** @type {import("fastify").FastifyPluginAsync} */
|
||
|
const app = async (fastify, opts) => {
|
||
|
fastify.get("/hello", async () => "hello");
|
||
|
|
||
|
if (opts.dev) {
|
||
|
const astro = await import("astro");
|
||
|
const astroDevServer = await astro.dev();
|
||
|
await fastify.register(await import("@fastify/http-proxy"), {
|
||
|
upstream: `http://localhost:${astroDevServer.address.port}`,
|
||
|
});
|
||
|
} else {
|
||
|
await fastify.register(fastifyStatic, {
|
||
|
root: fileURLToPath(import.meta.resolve("./dist")),
|
||
|
});
|
||
|
}
|
||
|
|
||
|
fastify.get("/world", async () => "world");
|
||
|
};
|
||
|
|
||
|
export default app;
|