mirror of
https://github.com/s427/MARL.git
synced 2025-01-31 11:34:46 +01:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import relativeLinks from "astro-relative-links";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [relativeLinks()],
|
|
outDir: "../dist",
|
|
});
|