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

This commit is contained in:
2026-04-29 21:17:14 +02:00
parent ca375e2144
commit 9197a7f6ee
53 changed files with 340 additions and 6 deletions

View File

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