10 lines
322 B
TypeScript
10 lines
322 B
TypeScript
/** @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
|
|
};
|
|
|
|
module.exports = nextConfig;
|