11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: { unoptimized: true },
|
|
eslint: {
|
|
dirs: ["src"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|