Initial commit: Spark Platform with Cartesian SEO Engine

This commit is contained in:
cawcenter
2025-12-11 23:21:35 -05:00
commit abd964a745
68 changed files with 7960 additions and 0 deletions

27
frontend/astro.config.ts Normal file
View File

@@ -0,0 +1,27 @@
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import react from '@astrojs/react';
import node from '@astrojs/node';
// Spark Platform - Multi-Tenant SSR Configuration
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone'
}),
integrations: [
react(),
tailwind({
applyBaseStyles: true
})
],
server: {
port: Number(process.env.PORT) || 4321,
host: true
},
vite: {
optimizeDeps: {
exclude: ['@directus/sdk']
}
}
});