pompy.dev/apps/blog/next.config.js

11 lines
226 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
distDir: "build",
images: { unoptimized: true },
experimental: {
externalDir: true,
},
}
module.exports = nextConfig