mirror of https://github.com/sparanoid/7z.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
503 B
18 lines
503 B
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://sparanoid.com',
|
|
base: '/lab/7z',
|
|
build: {
|
|
// https://docs.astro.build/en/reference/configuration-reference/#buildformat
|
|
format: 'file',
|
|
},
|
|
markdown: {
|
|
// https://docs.astro.build/en/reference/configuration-reference/#markdownsyntaxhighlight
|
|
syntaxHighlight: false,
|
|
},
|
|
integrations: [sitemap()],
|
|
});
|