11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
distDir: "dist",
|
|
images: { unoptimized: true },
|
|
experimental: {
|
|
externalDir: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|