false true

This commit is contained in:
Yoann Chaudet
2022-07-19 17:05:37 -07:00
parent 3d2f0e5994
commit 3d51fe705a
4 changed files with 4 additions and 4 deletions

2
dist/index.js vendored
View File

@@ -14850,7 +14850,7 @@ function getConfigParserSettings(staticSiteGenerator, path) {
blankConfigurationFile: __nccwpck_require__.ab + "next.js",
properties: {
basePath: path,
'images.unoptimized': false
'images.unoptimized': true
}
}
case 'gatsby':

View File

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

View File

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

View File

@@ -24,7 +24,7 @@ function getConfigParserSettings(staticSiteGenerator, path) {
blankConfigurationFile: `${__dirname}/blank-configurations/next.js`,
properties: {
basePath: path,
'images.unoptimized': false
'images.unoptimized': true
}
}
case 'gatsby':