mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2024-11-07 08:54:20 +01:00
101 lines
2.3 KiB
TypeScript
101 lines
2.3 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 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 { readingTimeRemarkPlugin, responsiveTablesRehypePlugin, lazyImagesRehypePlugin } from './src/utils/frontmatter';
|
|
|
|
import react from '@astrojs/react';
|
|
|
|
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: 'static',
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en', 'de', 'es', 'fr', 'it', 'ja', 'pt', 'zh-cn', 'zh-tw', 'ko', 'ar'],
|
|
routing: {
|
|
prefixDefaultLocale: true,
|
|
redirectToDefaultLocale: false,
|
|
},
|
|
},
|
|
integrations: [
|
|
react(),
|
|
tailwind({
|
|
applyBaseStyles: false,
|
|
}),
|
|
sitemap(),
|
|
mdx(),
|
|
icon({
|
|
include: {
|
|
tabler: ['*'],
|
|
'flat-color-icons': [
|
|
'template',
|
|
'gallery',
|
|
'approval',
|
|
'document',
|
|
'advertising',
|
|
'currency-exchange',
|
|
'voice-presentation',
|
|
'business-contact',
|
|
'database',
|
|
],
|
|
},
|
|
}),
|
|
|
|
...whenExternalScripts(() =>
|
|
partytown({
|
|
config: { forward: ['dataLayer.push'] },
|
|
})
|
|
),
|
|
|
|
compress({
|
|
CSS: true,
|
|
HTML: {
|
|
'html-minifier-terser': {
|
|
removeAttributeQuotes: false,
|
|
},
|
|
},
|
|
Image: false,
|
|
JavaScript: true,
|
|
SVG: false,
|
|
Logger: 1,
|
|
}),
|
|
|
|
astrowind({
|
|
config: './src/config.yaml',
|
|
}),
|
|
],
|
|
|
|
image: {
|
|
domains: ['cdn.pixabay.com'],
|
|
},
|
|
|
|
markdown: {
|
|
remarkPlugins: [readingTimeRemarkPlugin],
|
|
rehypePlugins: [responsiveTablesRehypePlugin, lazyImagesRehypePlugin],
|
|
},
|
|
|
|
vite: {
|
|
resolve: {
|
|
alias: {
|
|
'~': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
},
|
|
});
|