Jeremy Weinstein
Jeremy Weinstein
FYI; a similar issue may have existed in https://github.com/withastro/astro/issues/2766#issue-1166529448 but it looks like that was resolved through a Vite upgrade. I am wondering if the root cause is the same.
Update: Using `?inline` prevents the injection/hoisting into the page. The issue with the `.js` file not being emitted and `npm run build` still remains.
FYI; I was able to fix this in build mode by going into Astro's code and changing the logic around `isCSSRequest`. - https://github.com/withastro/astro/blob/main/packages/astro/src/vite-plugin-build-css/index.ts#L62 - https://github.com/withastro/astro/blob/main/packages/astro/src/core/render/util.ts#L48 When I altered this to...
I actually have no idea where I discovered `?inline` but I was just trying various things after Googling and noticed that adding `?inline` prevented the hoisting to the head. If...
By the way, thanks for the discussion!
My cursory reaction is that we should support obsolete messages using gettext's syntax, `#~` and not implement our own version of including obsolete messages. So, I think we should probably...
I did some cursory digging but haven't found any good examples of msgctxt support in Jinja2 templates. We can alter the default i18n extension to add support for this. Have...
Hi Luis - thanks for sending the test case. I played with the test case a bit and found that if you move files from `/ext/utils/` to just `/ext/` things...
Will try to have an update on this, this week
Gulp and Grow's dev server start in parallel, and Grow's dev server can take a few seconds to start up while it's computing the routing tree. Agree that a "ready"...