Building Static Export
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: 'build',
images: {
unoptimized: true,
},
};
module.exports = nextConfig;
yarn buildnpm run buildLast updated
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: 'build',
images: {
unoptimized: true,
},
};
module.exports = nextConfig;
yarn buildnpm run buildLast updated