mirror of
https://github.com/PragmaticMachineLearning/probly.git
synced 2026-04-16 03:00:33 -04:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
// other configurations...
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|