mirror of
https://github.com/netbirdio/dashboard.git
synced 2026-01-26 01:21:04 +00:00
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
module.exports = nextConfig;
|