# extendify/3.2.1/src/Launch/hooks/useVibeCss.js

Extendify, version 3.2.1. 9 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/Launch/hooks/useVibeCss.js
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/Launch/hooks/useVibeCss.js
- Modified: 2026-08-27T17:39:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.2.1/code/src/Launch/hooks/useVibeCss.js#L10-L20`.

```javascript
import { getVibes, vibeCssBySlug } from '@shared/lib/vibes';
import useSWRImmutable from 'swr/immutable';

// Fifteen previews render at once and share this key, so it fetches once.
export const useVibeCss = () =>
	useSWRImmutable('launch-vibe-css', () =>
		getVibes('launch').then(vibeCssBySlug),
	);

```
