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
13 lines
327 B
JavaScript
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"
|
|
}); |