Skip to content

Commit

Permalink
fix github deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Lehoczky committed Aug 10, 2024
1 parent 33893ab commit a72f37c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/demo/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { defineConfig } from "astro/config"

// https://astro.build/config
export default defineConfig({
site: "https://lehoczky.github.io",
base: "postcss-fluid",
integrations: [
tailwind({
applyBaseStyles: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/src/layouts/MainLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<base href={import.meta.env.BASE_URL} />
<base href={import.meta.env.BASE_URL + "/"} />
<title>PostCSS Fluid Demo</title>
</head>
<body class="bg-base-800 font-sans text-base-300">
Expand Down

0 comments on commit a72f37c

Please sign in to comment.