MHD
MHD
@dmitrysmagin if we disable file renaming will endup with css files generated with wrong hashes. that was a reported issue before check: https://github.com/codiume/orbit/issues/450.
> Okay, I understand now why .css files are not being updated with new .css names. I had build.format = "directory" set in my astro.config.mjs which is important for my...
What you have shared is what the plugin used to be. prior to version 4.5.0, but since this plugin is updating CSS files and updating the content without updating the...
thanks to @dmitrysmagin this issue has been resolved, you can try with: ```shell pnpm add https://pkg.pr.new/codiume/orbit/astro-purgecss@ae450b4 ```  sorry for taking to much time to resolve this :pray: .
:+1: We're encountering this exact issue with Next.js where, due to a canceled request, the client ends up stuck with an old, invalid refresh token, even though the backend has...
I admit the SSR setup for this package is a bit rough, it’s not well-documented. Technically, you need to tell PurgeCSS which files to scan so it can detect which...
This isn’t a bug, you actually need to define the supervisor config for your environment, just like @wvdweij suggested. something like this, I have configured 3 environments (production, staging, local)...
hey @juanrgm thanks for creating this PR, I will take a look into this asap.
Yes @lite-sky , this PR was created to address #1001, but I’m still not fully satisfied with the proposed API. I’ll take a bit more time to refine it and...
I'm thinking of an API like this: ```ts export type PurgeCSSOptions = { content?: Array | (() => Array); }; ``` This would allow users to pass a function that...