Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: ./site/out
path: ./site/dist
- id: deployment
uses: actions/deploy-pages@v4

Expand Down
11 changes: 5 additions & 6 deletions site/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import swc from "unplugin-swc";

Expand All @@ -10,15 +9,15 @@ import swc from "unplugin-swc";
//
// SWC plugin handles TC39 stage-3 decorators that typegres uses on
// `@tool()` — the friction Next 14's compiler couldn't accommodate.
//
// Tailwind 4 is wired through postcss.config.js (Astro picks it up
// automatically) — `@astrojs/tailwind` was only a convenience
// wrapper for that and doesn't ship for Astro 6.

export default defineConfig({
output: "static",
trailingSlash: "ignore",
integrations: [
react(),
tailwind({ applyBaseStyles: false }), // we provide our own globals.css
mdx(),
],
integrations: [react(), mdx()],
vite: {
plugins: [
swc.vite({
Expand Down
Loading
Loading