17 lines
405 B
JavaScript
17 lines
405 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
output: 'export', // Use this if you want to create "static generated website" (SSG), result in "/out" folder
|
|
trailingSlash: true,
|
|
images: { unoptimized: true },
|
|
|
|
env: {
|
|
// Add custom build-time env variables here, also check .env.* files
|
|
},
|
|
|
|
reactStrictMode: true,
|
|
// reactStrictMode: false,
|
|
};
|
|
|
|
export default nextConfig;
|