-
All checks were successful
Deploy / trigger (push) Successful in 2s

This commit is contained in:
2026-04-29 21:22:52 +02:00
parent c4a3a36499
commit 279be323cb

View File

@@ -1,9 +1,12 @@
/** @type {import('next').NextConfig} */ import type { NextConfig } from "next";
const nextConfig = {
const nextConfig: NextConfig = {
output: 'export', output: 'export',
// Opzionale: se carichi il sito in una sottocartella (es. nome-repo su GitHub Pages)
// basePath: '/nome-progetto', basePath: '/resistereinsilenzio-luigi',
// images: { unoptimized: true }, // Obbligatorio se usi l'elemento <Image> di Next images: {
unoptimized: true,
},
}; };
module.exports = nextConfig; export default nextConfig;