Files
365devnet/astro.config.ts
Richard Bergsma efdd0c28d4 Update Astro configuration to use Fastify adapter and include prefetch integration
- Replaced the Node adapter with Fastify for improved performance.
- Added the @astrojs/prefetch integration to enhance resource loading.
- Updated server settings to adjust logging level and minification options.
- Modified package.json to include new dependencies for Fastify and prefetch.
2025-07-02 22:52:53 +02:00

113 lines
2.5 KiB
TypeScript

import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import tailwind from '@astrojs/tailwind';
import mdx from '@astrojs/mdx';
import react from '@astrojs/react';
import partytown from '@astrojs/partytown';
import icon from 'astro-icon';
import compress from 'astro-compress';
import type { AstroIntegration } from 'astro';
import astrowind from './vendor/integration';
import fastify from '@astrojs/fastify';
import prefetch from '@astrojs/prefetch';
import { readingTimeRemarkPlugin, responsiveTablesRehypePlugin, lazyImagesRehypePlugin } from './src/utils/frontmatter';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const hasExternalScripts = false;
const whenExternalScripts = (items: (() => AstroIntegration) | (() => AstroIntegration)[] = []) =>
hasExternalScripts ? (Array.isArray(items) ? items.map((item) => item()) : [items()]) : [];
export default defineConfig({
output: 'server',
adapter: fastify(),
server: {
port: 3000,
host: true, // Allows external access if needed
},
i18n: {
locales: ["en", "de", "nl", "fr"],
defaultLocale: "en",
},
integrations: [
react(),
tailwind({
applyBaseStyles: false,
}),
sitemap({
entryLimit: 50000, // Ensure only one sitemap is generated
}),
mdx(),
icon({
include: {
tabler: ['*'],
'flat-color-icons': [
'template',
'gallery',
'approval',
'document',
'advertising',
'currency-exchange',
'voice-presentation',
'business-contact',
'database',
],
'circle-flags': ['*'],
},
}),
...whenExternalScripts(() =>
partytown({
config: { forward: ['dataLayer.push'] },
})
),
compress({
CSS: true,
HTML: {
'html-minifier-terser': {
removeAttributeQuotes: false,
},
},
Image: true,
JavaScript: true,
SVG: false,
Logger: 0,
}),
astrowind({
config: './src/config.yaml',
}),
prefetch(),
],
image: {
domains: ['cdn.pixabay.com', 'raw.githubusercontent.com'],
},
markdown: {
remarkPlugins: [readingTimeRemarkPlugin],
rehypePlugins: [responsiveTablesRehypePlugin, lazyImagesRehypePlugin],
},
vite: {
build: {
minify: 'esbuild',
},
resolve: {
alias: {
'~': path.resolve(__dirname, './src'),
},
},
},
});