fgo-ta-com-website/astro.config.mjs
Firq 629bf91d4f
All checks were successful
/ get-version (push) Successful in 5s
/ astro-check (push) Successful in 14s
/ build-site (push) Successful in 1m17s
/ check-tag (push) Successful in 3s
/ auto-deploy-dockge (push) Successful in 7s
/ checking (push) Successful in 15s
/ create-release (push) Successful in 11s
Bumped astro and restructured
2024-08-21 13:26:38 +02:00

13 lines
327 B
JavaScript

import sitemap from '@astrojs/sitemap';
import metaTags from "astro-meta-tags";
import { defineConfig } from 'astro/config';
export default defineConfig({
sitemap: true,
base: '/',
outDir: 'dist',
publicDir: 'public',
site: 'https://fgo-ta.com/',
integrations: [sitemap(), metaTags()],
trailingSlash: "never"
});