Results 115 comments of Scott Rod

I'm experiencing this too, I think, using Astro 1.0.0. If I change my .mdx files back to .md everything works. Meaning, my changes are reflected in the browser upon save....

@bholmesdev Unfortunately, there aren't any errors logged to the console that I saw. I had created a screencast about the problem. Hopefully, this helps. https://cloudup.com/crr03kJYHRO Sorry if the screencast is...

@bholmesdev I forked that Stackblitz with beta 41 instead (https://stackblitz.com/edit/github-3d931t-bt8fwa) which illustrates the css sourcemap displaying properly. Inspect ``, for example, you should see the differences between these two playgrounds....

@bholmesdev A few RCs ago, this bug was kind of fixed, meaning CSS sourcemaps are now present. However, the references are also now being duplicated which makes debugging still difficult....

@tony-sull This might be a Brave browser issue as Chrome and Safari don't seem to behave that way.

Honestly, just found it more reliable to add this configuration to postcss.config.js. ```js const postcssPresetEnv = require("postcss-preset-env") module.exports = { plugins: [ postcssPresetEnv({ stage: 0, features: { "custom-media-queries": { importFrom:...

Any movement on allowing relative urls?

At the time I was viewing it in dark mode on a Chromium browser. In dark mode, the background color on active state doesn't provide enough contrast, at least to...

Honestly, just making the gray color appear a bit lighter like `#555555` would do the trick while still satisfying AAA contrast. Otherwise, using one of the theme's accent colors as...

@cramforce True, the css isn't minified in the css file, but it does get transformed/minified (probably due to csso) during development – `npm run watch`. Therefore, there is no real...