This commit is contained in:
Kar
2025-03-19 20:42:16 +05:30
commit 11eb64b5e5
44 changed files with 11825 additions and 0 deletions

15
astro.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
site: 'https://siliconpin.com',
integrations: [tailwind(), react()],
server: {
host: '0.0.0.0',
port: 3000
},
output: 'static',
});