@critters-rs/astro
v1.0.1
Published
Astro integration for critters-rs. Quickly inline your website's critical CSS.
Downloads
112
Maintainers
Readme
@critters-rs/astro
Rapidly inline your Astro site's critical CSS with critters-rs
.
This Astro integration operates on the generated output for the static pages on your site, inlining the critical CSS within each HTML file while deferring unused styles to be loaded after the page has painted. This should help to reduce delays in FCP and LCP caused by stylesheet loading and parsing.
Installation
Using astro add
The easiest way to install @critters-rs/astro
is the astro add
command, which automatically installs this package as a dependency and adds it to your Astro configuration. To use it, run the following command and follow the prompts:
Using NPM:
npx astro add @critters-rs/astro
Using Yarn:
yarn astro add @critters-rs/astro
Using PNPM:
pnpm astro add @critters-rs/astro
Manual Installation
First, install the integration package using your preferred package manager.
pnpm add -D @critters-rs/astro
Then, add the integration to the integrations
section of astro.config.*
.
import critters from '@critters-rs/astro';
export default defineConfig({
integrations: [critters()],
});
Usage
For simple use-cases, the above setup should be enough to see performance improvements, and should not affect the appearance of any pages. That said, the critters()
function takes an optional set of options to configure the behavior of critters
. The full set of available options can be seen here, and are also available in the typescript definitions published with the package.
import critters from '@critters-rs/astro';
export default defineConfig({
integrations: [
critters({
publicPath: 'https://example.com',
external: true,
mergeStylesheets: true,
...
})
],
});