mirror of
https://github.com/actions/configure-pages.git
synced 2025-12-08 16:16:09 +00:00
experimental
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -14850,7 +14850,7 @@ function getConfigParserSettings(staticSiteGenerator, path) {
|
||||
blankConfigurationFile: __nccwpck_require__.ab + "next.js",
|
||||
properties: {
|
||||
basePath: path,
|
||||
'images.unoptimized': true
|
||||
'experimental.images.unoptimized': true
|
||||
}
|
||||
}
|
||||
case 'gatsby':
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -24,7 +24,7 @@ function getConfigParserSettings(staticSiteGenerator, path) {
|
||||
blankConfigurationFile: `${__dirname}/blank-configurations/next.js`,
|
||||
properties: {
|
||||
basePath: path,
|
||||
'images.unoptimized': true
|
||||
'experimental.images.unoptimized': true
|
||||
}
|
||||
}
|
||||
case 'gatsby':
|
||||
|
||||
Reference in New Issue
Block a user