diff --git a/dotnet/docusaurus.config.ts b/dotnet/docusaurus.config.ts index cb994b5c789..852bba209ad 100644 --- a/dotnet/docusaurus.config.ts +++ b/dotnet/docusaurus.config.ts @@ -47,7 +47,9 @@ let plugins = [ [ require.resolve('@docusaurus/plugin-ideal-image'), { - max: 1024, + // The plugin will take the min of this and the actual dimensions + // https://github.com/slorber/responsive-loader/blob/master/src/index.js#L187C32-L187C46 + max: Number.MAX_SAFE_INTEGER, min: 640, steps: 4, disableInDev: false diff --git a/java/docusaurus.config.ts b/java/docusaurus.config.ts index a4048610e5d..0ffe3fb219a 100644 --- a/java/docusaurus.config.ts +++ b/java/docusaurus.config.ts @@ -47,7 +47,9 @@ let plugins = [ [ require.resolve('@docusaurus/plugin-ideal-image'), { - max: 1024, + // The plugin will take the min of this and the actual dimensions + // https://github.com/slorber/responsive-loader/blob/master/src/index.js#L187C32-L187C46 + max: Number.MAX_SAFE_INTEGER, min: 640, steps: 4, disableInDev: false diff --git a/nodejs/docusaurus.config.ts b/nodejs/docusaurus.config.ts index 885685bcc37..3a94ec34667 100644 --- a/nodejs/docusaurus.config.ts +++ b/nodejs/docusaurus.config.ts @@ -47,7 +47,9 @@ let plugins = [ [ require.resolve('@docusaurus/plugin-ideal-image'), { - max: 1024, + // The plugin will take the min of this and the actual dimensions + // https://github.com/slorber/responsive-loader/blob/master/src/index.js#L187C32-L187C46 + max: Number.MAX_SAFE_INTEGER, min: 640, steps: 4, disableInDev: false diff --git a/python/docusaurus.config.ts b/python/docusaurus.config.ts index 17262d4ede5..6f4daac0ad5 100644 --- a/python/docusaurus.config.ts +++ b/python/docusaurus.config.ts @@ -47,7 +47,9 @@ let plugins = [ [ require.resolve('@docusaurus/plugin-ideal-image'), { - max: 1024, + // The plugin will take the min of this and the actual dimensions + // https://github.com/slorber/responsive-loader/blob/master/src/index.js#L187C32-L187C46 + max: Number.MAX_SAFE_INTEGER, min: 640, steps: 4, disableInDev: false