Major additions: - Territory manager system with application workflow - Custom pricing and page builder with Craft.js - Enhanced Stripe Connect onboarding - CodeReadr QR scanning integration - Kiosk mode for venue sales - Super admin dashboard and analytics - MCP integration for AI-powered operations Infrastructure improvements: - Centralized API client and routing system - Enhanced authentication with organization context - Comprehensive theme management system - Advanced event management with custom tabs - Performance monitoring and accessibility features Database schema updates: - Territory management tables - Custom pages and pricing structures - Kiosk PIN system - Enhanced organization profiles - CodeReadr integration tables 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
37 lines
702 B
JavaScript
37 lines
702 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import react from '@astrojs/react';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import node from '@astrojs/node';
|
|
import sentry from '@sentry/astro';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: 'server',
|
|
integrations: [
|
|
react(),
|
|
sentry({
|
|
dsn: process.env.SENTRY_DSN,
|
|
environment: process.env.NODE_ENV || 'development',
|
|
release: process.env.SENTRY_RELEASE || 'unknown'
|
|
})
|
|
],
|
|
adapter: node({
|
|
mode: 'standalone'
|
|
}),
|
|
|
|
vite: {
|
|
plugins: [tailwindcss()]
|
|
},
|
|
|
|
server: {
|
|
port: 4321,
|
|
host: true
|
|
},
|
|
|
|
// Security headers
|
|
security: {
|
|
checkOrigin: true
|
|
}
|
|
}); |