allow react to properly merge/dedupe homepage inline styles

https://react.dev/reference/react-dom/components/style#rendering-an-inline-css-stylesheet
This commit is contained in:
2025-03-08 10:34:57 -05:00
parent 9229f92c0c
commit a21206eaa5
3 changed files with 121 additions and 204 deletions
+11 -5
View File
@@ -69,22 +69,22 @@
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@eslint/js": "^9.22.0",
"@jakejarvis/eslint-config": "^4.0.7",
"@types/comma-number": "^2.1.2",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.9",
"@types/node": "^22.13.10",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-is": "^19.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint": "^9.22.0",
"eslint-config-next": "15.2.2-canary.3",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-mdx": "^3.2.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
@@ -125,6 +125,12 @@
"prisma",
"sharp",
"simple-git-hooks"
]
],
"peerDependencyRules": {
"allowedVersions": {
"react": "^19",
"react-dom": "^19"
}
}
}
}