mirror of
https://github.com/PragmaticMachineLearning/probly.git
synced 2026-01-12 23:07:55 -05:00
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
// other configurations...
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|