Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dotnet/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion java/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion nodejs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion python/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down