From 2a287f317a51f5f02b643af0acf2733cadbb8081 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 17 Sep 2022 15:24:50 +0300 Subject: feat: initial commit --- next.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 next.config.js (limited to 'next.config.js') diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..63fbc33 --- /dev/null +++ b/next.config.js @@ -0,0 +1,11 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + experimental: { + images: { + allowFutureImage: true, + }, + }, +} + +module.exports = nextConfig -- cgit v1.2.3