mirror of
https://github.com/Vomitblood/stort.git
synced 2024-11-26 05:45:26 +08:00
11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|