diff --git a/my-app/next.config.ts b/my-app/next.config.ts index f50a8e3..53f2290 100644 --- a/my-app/next.config.ts +++ b/my-app/next.config.ts @@ -1,9 +1,12 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { +import type { NextConfig } from "next"; + +const nextConfig: 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 di Next + + basePath: '/resistereinsilenzio-luigi', + images: { + unoptimized: true, + }, }; -module.exports = nextConfig; +export default nextConfig;