2023-08-30 05:02:51 -05:00
|
|
|
/* eslint-env node */
|
2023-09-02 09:17:15 -05:00
|
|
|
/*!
|
|
|
|
* This file is part of Share₂Fedi
|
|
|
|
* https://github.com/kytta/share2fedi
|
|
|
|
*
|
|
|
|
* SPDX-FileCopyrightText: © 2023 Nikita Karamov <me@kytta.dev>
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
2023-03-17 15:08:08 -05:00
|
|
|
import { defineConfig } from "astro/config";
|
|
|
|
|
2023-03-17 20:43:57 -05:00
|
|
|
import cloudflare from "@astrojs/cloudflare";
|
2023-08-26 08:27:20 -05:00
|
|
|
import deno from "@astrojs/deno";
|
2024-02-12 15:12:27 -05:00
|
|
|
import netlify from "@astrojs/netlify";
|
2023-03-17 15:08:08 -05:00
|
|
|
import node from "@astrojs/node";
|
|
|
|
import vercel from "@astrojs/vercel/serverless";
|
|
|
|
|
2024-02-12 15:12:27 -05:00
|
|
|
import browserslist from "browserslist";
|
|
|
|
import { browserslistToTargets, transform } from "lightningcss";
|
|
|
|
|
2023-08-30 05:19:28 -05:00
|
|
|
let adapterConfig = {};
|
2023-08-26 08:27:20 -05:00
|
|
|
if (process.env.VERCEL) {
|
|
|
|
console.info("Using Vercel (serverless) adapter...");
|
2023-08-30 05:19:28 -05:00
|
|
|
adapterConfig = {
|
2023-09-02 15:15:57 -05:00
|
|
|
adapter: vercel({
|
|
|
|
functionPerRoute: true,
|
|
|
|
}),
|
2023-08-26 08:27:20 -05:00
|
|
|
};
|
|
|
|
} else if (process.env.CF_PAGES) {
|
2024-02-12 15:12:27 -05:00
|
|
|
console.info("Using Cloudflare (Pages) adapter...");
|
2023-08-30 05:19:28 -05:00
|
|
|
adapterConfig = {
|
2023-08-26 08:27:20 -05:00
|
|
|
adapter: cloudflare(),
|
|
|
|
};
|
2023-03-17 15:08:08 -05:00
|
|
|
} else if (process.env.NETLIFY) {
|
2023-08-26 08:27:20 -05:00
|
|
|
console.info("Using Netlify (Functions) adapter...");
|
2023-08-30 05:19:28 -05:00
|
|
|
adapterConfig = {
|
2023-09-02 16:35:04 -05:00
|
|
|
adapter: netlify(),
|
2023-08-26 08:27:20 -05:00
|
|
|
};
|
|
|
|
} else if (process.argv.includes("--s2f-use-deno")) {
|
|
|
|
console.info("Using Deno adapter...");
|
2023-08-30 05:19:28 -05:00
|
|
|
adapterConfig = {
|
2023-08-26 08:27:20 -05:00
|
|
|
adapter: deno(),
|
|
|
|
};
|
2023-03-17 15:08:08 -05:00
|
|
|
} else {
|
2023-08-26 08:27:20 -05:00
|
|
|
console.info("Using Node.js adapter...");
|
|
|
|
console.info("Run with '--s2f-use-deno' flag to use Deno");
|
2023-08-30 05:19:28 -05:00
|
|
|
adapterConfig = {
|
2023-08-26 08:27:20 -05:00
|
|
|
adapter: node({
|
|
|
|
mode: "standalone",
|
|
|
|
}),
|
|
|
|
};
|
2023-03-17 15:08:08 -05:00
|
|
|
}
|
|
|
|
|
2024-02-12 15:12:27 -05:00
|
|
|
const lightningCssPlugin = () => {
|
|
|
|
const targets = browserslistToTargets(browserslist());
|
|
|
|
return {
|
|
|
|
name: "vite-plugin-lightningcss",
|
|
|
|
transform(source, id) {
|
|
|
|
if (!id.endsWith(".css")) return;
|
|
|
|
|
|
|
|
const { code, map } = transform({
|
|
|
|
filename: id,
|
|
|
|
code: Buffer.from(source),
|
|
|
|
minify: true,
|
|
|
|
sourceMap: true,
|
|
|
|
targets,
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
code: code.toString(),
|
|
|
|
// eslint-disable-next-line unicorn/no-null
|
|
|
|
map: map ? map.toString() : null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-03-17 15:08:08 -05:00
|
|
|
export default defineConfig({
|
|
|
|
site: "https://s2f.kytta.dev",
|
2023-08-30 05:19:28 -05:00
|
|
|
|
|
|
|
output: "server",
|
|
|
|
...adapterConfig,
|
|
|
|
|
2023-08-26 08:37:02 -05:00
|
|
|
vite: {
|
2024-02-12 15:12:27 -05:00
|
|
|
plugins: [lightningCssPlugin()],
|
2023-08-26 08:37:02 -05:00
|
|
|
},
|
2023-03-17 15:08:08 -05:00
|
|
|
});
|