experimental

This commit is contained in:
Yoann Chaudet
2022-07-19 17:15:09 -07:00
parent 3d51fe705a
commit 084dc5123d
4 changed files with 10 additions and 7 deletions

View File

@@ -1,3 +1,6 @@
// Default Pages configuration for Next
const nextConfig = {images: {unoptimized: true}, basePath: '/docs'}
const nextConfig = {
experimental: {images: {unoptimized: true}},
basePath: '/docs'
}
module.exports = nextConfig

View File

@@ -1,9 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {unoptimized: true},
basePath: "/docs",
experimental: {images: {unoptimized: true}},
basePath: '/docs',
reactStrictMode: true,
swcMinify: true,
swcMinify: true
}
module.exports = nextConfig
module.exports = nextConfig