I'm trying to expand browser support for an astro & starlight project. I'm currently running an older version of safari (v14.1) which I've managed to get working for the astro portion of the project by using the following postcss.config.cjs
module.exports = {
plugins: [
require("@pandacss/dev/postcss")(),
require("@csstools/postcss-cascade-layers")(),
require("autoprefixer")(),
],
};
The starlight docs are at a subdirectory (/docs) but all the pages are loading completely unstyled. On investigating other deployed starlight sites with safari (14.1), it looks like it's a common issue. Can anyone give me some pointers on where to start when trying to diagnose which classes or syntax might be causing the issue? I've attached an image of the astro.build sites docs. Note that the landing page the rest of the site renders correctly.