Fixed T_T
All checks were successful
Ascently - Docs Deploy / build-and-push (push) Successful in 3m53s

This commit is contained in:
2025-10-14 11:53:51 -06:00
parent 1a8f41ecde
commit 79b87a088d
4 changed files with 159 additions and 5 deletions

View File

@@ -2,9 +2,12 @@
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
site: "https://docs.ascently.app",
integrations: [
starlight({
title: "Ascently",
@@ -47,4 +50,8 @@ export default defineConfig({
customCss: ["./src/styles/custom.css"],
}),
],
});
adapter: node({
mode: "standalone",
}),
});