13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export',
|
|
trailingSlash: true,
|
|
|
|
basePath: '/Resistere_in_Silenzio/my-app/out',
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
|
|
export default nextConfig;
|