website hosted

This commit is contained in:
root
2025-10-17 21:06:57 +00:00
parent 14b2d53e8e
commit 73cdd255a9
308 changed files with 88840 additions and 9 deletions

View File

@@ -1,5 +1,24 @@
// @ts-check
// astro.config.mjs
import { defineConfig } from 'astro/config';
import dotenv from 'dotenv';
import node from '@astrojs/node';
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({});
dotenv.config();
export default defineConfig({
site: 'https://juchatz.com',
output: 'server',
adapter: node({
mode: 'standalone'
}),
integrations: [sitemap(/* your config */)],
// Add this server config for local network access
server: {
host: '0.0.0.0', // Bind to all network interfaces
port: 7080
}
});