mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-07 01:42:28 +03:00
11 lines
179 B
JavaScript
11 lines
179 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|