2024-05-05 18:41:47 +02:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
|
|
// Integrations
|
2024-05-26 23:15:29 +02:00
|
|
|
import svelte from '@astrojs/svelte';
|
2024-05-05 18:41:47 +02:00
|
|
|
import react from "@astrojs/react";
|
|
|
|
import partytown from '@astrojs/partytown';
|
|
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
|
|
|
|
// Adapters
|
|
|
|
import vercelAdapter from '@astrojs/vercel/serverless';
|
|
|
|
import netlifyAdapter from '@astrojs/netlify';
|
|
|
|
import nodeAdapter from '@astrojs/node';
|
|
|
|
import cloudflareAdapter from '@astrojs/cloudflare';
|
|
|
|
|
|
|
|
// Helper function to unwrap both Vite and Node environment variables
|
|
|
|
const unwrapEnvVar = (varName, fallbackValue) => {
|
|
|
|
const classicEnvVar = process?.env && process.env[varName];
|
|
|
|
const viteEnvVar = import.meta.env[varName];
|
|
|
|
return classicEnvVar || viteEnvVar || fallbackValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the deploy target (vercel, netlify, cloudflare, node)
|
2024-06-18 23:06:34 +02:00
|
|
|
const deployTarget = unwrapEnvVar('PLATFORM', 'node').toLowerCase();
|
2024-05-05 18:41:47 +02:00
|
|
|
|
|
|
|
// Determine the output mode (server, hybrid or static)
|
|
|
|
const output = unwrapEnvVar('OUTPUT', 'hybrid');
|
|
|
|
|
|
|
|
// The FQDN of where the site is hosted (used for sitemaps & canonical URLs)
|
|
|
|
const site = unwrapEnvVar('SITE_URL', 'https://web-check.xyz');
|
|
|
|
|
|
|
|
// The base URL of the site (if serving from a subdirectory)
|
|
|
|
const base = unwrapEnvVar('BASE_URL', '/');
|
|
|
|
|
2024-05-07 00:29:30 +02:00
|
|
|
// Should run the app in boss-mode (requires extra configuration)
|
|
|
|
const isBossServer = unwrapEnvVar('BOSS_SERVER', false);
|
|
|
|
|
2024-05-05 18:41:47 +02:00
|
|
|
// Initialize Astro integrations
|
2024-05-26 23:15:29 +02:00
|
|
|
const integrations = [svelte(), react(), partytown(), sitemap()];
|
2024-05-05 18:41:47 +02:00
|
|
|
|
|
|
|
// Set the appropriate adapter, based on the deploy target
|
|
|
|
function getAdapter(target) {
|
|
|
|
switch(target) {
|
|
|
|
case 'vercel':
|
|
|
|
return vercelAdapter();
|
|
|
|
case 'netlify':
|
|
|
|
return netlifyAdapter();
|
|
|
|
case 'cloudflare':
|
|
|
|
return cloudflareAdapter();
|
|
|
|
case 'node':
|
|
|
|
return nodeAdapter({ mode: 'middleware' });
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported deploy target: ${target}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const adapter = getAdapter(deployTarget);
|
|
|
|
|
|
|
|
// Print build information to console
|
|
|
|
console.log(
|
|
|
|
`\n\x1b[1m\x1b[35m Preparing to start build of Web Check.... \x1b[0m\n`,
|
|
|
|
`\x1b[35m\x1b[2mCompiling for "${deployTarget}" using "${output}" mode, `
|
|
|
|
+ `to deploy to "${site}" at "${base}"\x1b[0m\n`,
|
|
|
|
`\x1b[2m\x1b[36m🛟 For documentation and support, visit the GitHub repo: ` +
|
|
|
|
`https://github.com/lissy93/web-check \n`,
|
|
|
|
`💖 Found Web-Check useful? Consider sponsoring us on GitHub ` +
|
|
|
|
`to help fund maintenance & development.\x1b[0m\n`,
|
|
|
|
);
|
|
|
|
|
2024-06-08 16:20:14 +02:00
|
|
|
const redirects = {
|
|
|
|
'/about': '/check/about',
|
|
|
|
};
|
2024-05-05 18:41:47 +02:00
|
|
|
|
2024-05-07 00:29:30 +02:00
|
|
|
// Skip the marketing homepage for self-hosted users
|
2024-05-12 00:11:53 +02:00
|
|
|
if (!isBossServer && isBossServer !== true) {
|
2024-05-07 00:29:30 +02:00
|
|
|
redirects['/'] = '/check';
|
2024-05-05 18:41:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Export Astro configuration
|
2024-05-07 00:29:30 +02:00
|
|
|
export default defineConfig({ output, base, integrations, site, adapter, redirects });
|
2024-05-05 18:41:47 +02:00
|
|
|
|