mirror of
https://github.com/actions/configure-pages.git
synced 2025-12-09 00:26:08 +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",
|
blankConfigurationFile: __nccwpck_require__.ab + "next.js",
|
||||||
properties: {
|
properties: {
|
||||||
basePath: path,
|
basePath: path,
|
||||||
'images.unoptimized': true
|
'experimental.images.unoptimized': true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case 'gatsby':
|
case 'gatsby':
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
// Default Pages configuration for Next
|
// Default Pages configuration for Next
|
||||||
const nextConfig = {images: {unoptimized: true}, basePath: '/docs'}
|
const nextConfig = {
|
||||||
|
experimental: {images: {unoptimized: true}},
|
||||||
|
basePath: '/docs'
|
||||||
|
}
|
||||||
module.exports = nextConfig
|
module.exports = nextConfig
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
images: {unoptimized: true},
|
experimental: {images: {unoptimized: true}},
|
||||||
basePath: "/docs",
|
basePath: '/docs',
|
||||||
reactStrictMode: true,
|
reactStrictMode: true,
|
||||||
swcMinify: true,
|
swcMinify: true
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = nextConfig
|
module.exports = nextConfig
|
||||||
@@ -24,7 +24,7 @@ function getConfigParserSettings(staticSiteGenerator, path) {
|
|||||||
blankConfigurationFile: `${__dirname}/blank-configurations/next.js`,
|
blankConfigurationFile: `${__dirname}/blank-configurations/next.js`,
|
||||||
properties: {
|
properties: {
|
||||||
basePath: path,
|
basePath: path,
|
||||||
'images.unoptimized': true
|
'experimental.images.unoptimized': true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case 'gatsby':
|
case 'gatsby':
|
||||||
|
|||||||
Reference in New Issue
Block a user