No major breaking changes.
Just be careful if you are injecting scripts using react-helmet
.
- 🐛 Fixed: move
react-helmet
injected scripts in the head to prevent duplicate loading of JS files
(#904 - @timothycoy)
Previously, scripts injected viareact-helmet
where injected before the end of the</body>
tag. But it can produce unexpected behavior since on the client side,react-helmet
injects those in the<head>
, which can make some scripts doing twice their job (and that's probably not what you want). - 🍭 Added: sitemap webpack plugin
(#907 - @xuopled)
You can now rely onimport PhenomicLoaderSitemapWebpackPlugin from "phenomic/lib/loader-sitemap-webpack-plugin"
to generate a Sitemap.
See https://phenomic.io/docs/usage/sitemap/ for more information.