We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ded3f4f + b423dd3 commit d693bc0Copy full SHA for d693bc0
2 files changed
astro.config.mjs
@@ -1,9 +1,7 @@
1
// @ts-check
2
import { defineConfig } from 'astro/config';
3
-import tailwind from '@astrojs/tailwind';
4
-
5
6
// https://astro.build/config
7
export default defineConfig({
8
- integrations: [tailwind()],
+ site: 'https://osscommunities.com/',
9
});
netlify.toml
@@ -0,0 +1,19 @@
+[build]
+ publish = "dist"
+ command = "npm run build"
+
+[build.environment]
+ NODE_VERSION = "18"
+# Redirect rules for SPA-like behavior (optional)
+[[redirects]]
10
+ from = "/*"
11
+ to = "/index.html"
12
+ status = 200
13
+ conditions = {Role = ["admin"]}
14
15
+# Optional: Handle form submissions (if you plan to add forms later)
16
+# [[redirects]]
17
+# from = "/api/*"
18
+# to = "/.netlify/functions/:splat"
19
+# status = 200
0 commit comments