mirror of
https://github.com/catppuccin/unocss.git
synced 2026-01-09 05:21:14 +08:00
* chore: better workspace * chore: refresh lockfile * chore: use capital letter on typedoc config Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: use better globs on eslint config Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: unset package-name for release-please Co-authored-by: Hammy <58985301+sgoudham@users.noreply.github.com> * chore: link README from package to root, remove LICENCE file links When `pnpm pack`ing, LICENCE file seems to be automatically included in the generated `tar.gz`. * ci(release-please): fix release-please outputs * chore(release-please): set `include-component-in-tag` to `false` * chore: revert preview URLs * chore: rename `website` to `example` It was intended to be an example usage of the project in the first place, now that we serve it at unocss.catppuccin.com should not change its name. * chore(deps): refresh lockfile chore(deps): bump pnpm version --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Hammy <58985301+sgoudham@users.noreply.github.com>
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { defineConfig } from 'astro/config';
|
|
|
|
import UnoCSS from 'unocss/astro';
|
|
|
|
export default defineConfig({
|
|
site: 'https://unocss.catppuccin.org',
|
|
integrations: [UnoCSS()],
|
|
});
|