1
1
mirror of https://github.com/neosubhamoy/neodlp-website.git synced 2026-02-04 12:22:21 +05:30

(chore): initial MVP release

This commit is contained in:
2025-05-13 09:49:26 +05:30
Verified
commit 76cf1d3d41
46 changed files with 15065 additions and 0 deletions

17
astro.config.mjs Normal file
View File

@@ -0,0 +1,17 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
import react from '@astrojs/react';
import sitemap from '@astrojs/sitemap';
import netlify from '@astrojs/netlify';
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()]
},
integrations: [react(), sitemap()],
adapter: netlify(),
site: 'https://neodlp.neosubhamoy.com',
output: 'server',
});