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:
parent
cece15bcb6
commit
626219620b
6 changed files with 171 additions and 67 deletions
|
@ -1,5 +1,7 @@
|
|||
import type { MetadataRoute } from 'next';
|
||||
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export default function robots(): MetadataRoute.Robots {
|
||||
const baseUrl = 'https://cheatingchelsea.com';
|
||||
return {
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import type { MetadataRoute } from 'next';
|
||||
|
||||
export const dynamic = 'force-static';
|
||||
|
||||
export default function sitemap(): MetadataRoute.Sitemap {
|
||||
const baseUrl = 'https://cheatingchelsea.com';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue