mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
25 lines
728 B
JavaScript
25 lines
728 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({
|
|
root: fileURLToPath(import.meta.resolve(".")),
|
|
});
|
|
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;
|