Add secrets configuration and deployment scripts

- Added GitHub Actions secrets configuration for deployment
- Updated next.config.ts with environment variables
- Modified package.json for production deployment
- Added robots.ts and sitemap.ts configuration
- Created deployment scripts directory
This commit is contained in:
Derek Slenk 2025-06-29 17:42:11 -04:00
parent cece15bcb6
commit 626219620b
6 changed files with 171 additions and 67 deletions

View file

@ -2,6 +2,9 @@ import type {NextConfig} from 'next';
const nextConfig: NextConfig = {
/* config options here */
output: 'export',
trailingSlash: true,
skipTrailingSlashRedirect: true,
typescript: {
ignoreBuildErrors: true,
},