2022-11-12 02:09:28 +05:30
|
|
|
/**
|
|
|
|
* @type {import('next').NextConfig}
|
|
|
|
**/
|
|
|
|
|
|
|
|
const nextConfig = {
|
2024-08-31 19:09:05 +05:30
|
|
|
output: "export",
|
2022-09-30 22:32:57 +05:30
|
|
|
images: {
|
|
|
|
unoptimized: true,
|
2022-09-30 22:06:16 +05:30
|
|
|
},
|
2023-10-25 17:14:22 +05:30
|
|
|
experimental: {
|
|
|
|
externalDir: true,
|
|
|
|
},
|
2024-12-15 14:25:18 +05:30
|
|
|
compiler: {
|
|
|
|
removeConsole: process.env.NODE_ENV === "production",
|
|
|
|
},
|
2022-09-30 22:06:16 +05:30
|
|
|
};
|
2022-11-12 02:09:28 +05:30
|
|
|
|
|
|
|
module.exports = nextConfig;
|