init commit

This commit is contained in:
David Melendez
2026-01-14 22:44:08 +01:00
parent 1d98d30629
commit c3868062e6
72 changed files with 21172 additions and 1 deletions

52
next.config.js Normal file
View File

@@ -0,0 +1,52 @@
/**
* Next.js Configuration
* Professional Resume Builder
*
* @author David Valera Melendez <david@valera-melendez.de>
* @created 2025-08-07
* @location Made in Germany 🇩🇪
*/
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
experimental: {
typedRoutes: true,
},
images: {
domains: ['localhost'],
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
// Optimization settings
swcMinify: true,
// Custom headers for security
async headers() {
return [
{
source: '/(.*)',
headers: [
{
key: 'X-Frame-Options',
value: 'DENY',
},
{
key: 'X-Content-Type-Options',
value: 'nosniff',
},
{
key: 'Referrer-Policy',
value: 'strict-origin-when-cross-origin',
},
],
},
];
},
};
module.exports = nextConfig;