This repository has been archived on 2024-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
share2fedi/astro.config.ts

60 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-08-30 06:02:51 -04:00
/* eslint-env node */
2023-03-17 16:08:08 -04:00
import { defineConfig } from "astro/config";
2023-08-26 09:37:02 -04:00
import lightningcss from "vite-plugin-lightningcss";
2023-03-17 16:08:08 -04:00
2023-03-17 21:43:57 -04:00
import cloudflare from "@astrojs/cloudflare";
2023-08-26 09:27:20 -04:00
import deno from "@astrojs/deno";
import netlify from "@astrojs/netlify";
2023-03-17 16:08:08 -04:00
import node from "@astrojs/node";
import vercel from "@astrojs/vercel/serverless";
2023-08-30 06:19:28 -04:00
let adapterConfig = {};
2023-08-26 09:27:20 -04:00
if (process.env.VERCEL) {
console.info("Using Vercel (serverless) adapter...");
2023-08-30 06:19:28 -04:00
adapterConfig = {
2023-08-26 09:27:20 -04:00
adapter: vercel(),
};
} else if (process.env.CF_PAGES) {
console.info("Using Cloudflare adapter...");
2023-08-30 06:19:28 -04:00
adapterConfig = {
2023-08-26 09:27:20 -04:00
adapter: cloudflare(),
};
2023-03-17 16:08:08 -04:00
} else if (process.env.NETLIFY) {
2023-08-26 09:27:20 -04:00
console.info("Using Netlify (Functions) adapter...");
2023-08-30 06:19:28 -04:00
adapterConfig = {
2023-08-26 09:27:20 -04:00
adapter: netlify(),
};
} else if (process.argv.includes("--s2f-use-deno")) {
console.info("Using Deno adapter...");
2023-08-30 06:19:28 -04:00
adapterConfig = {
2023-08-26 09:27:20 -04:00
adapter: deno(),
};
2023-03-17 16:08:08 -04:00
} else {
2023-08-26 09:27:20 -04:00
console.info("Using Node.js adapter...");
console.info("Run with '--s2f-use-deno' flag to use Deno");
2023-08-30 06:19:28 -04:00
adapterConfig = {
2023-08-26 09:27:20 -04:00
adapter: node({
mode: "standalone",
}),
};
2023-03-17 16:08:08 -04:00
}
export default defineConfig({
site: "https://s2f.kytta.dev",
2023-08-30 06:19:28 -04:00
redirects: {
"/api/toot": {
destination: "/api/share",
status: 308,
},
},
compressHTML: true,
output: "server",
...adapterConfig,
2023-08-26 09:37:02 -04:00
vite: {
plugins: [lightningcss()],
},
2023-03-17 16:08:08 -04:00
});