mirror of
https://github.com/catppuccin/website.git
synced 2026-01-09 04:51:07 +08:00
* feat: category and platform filters * fix: mobile friendly searchbar & scroll to top * feat: store platforms & categories in url * fix(ports): magnifying glass changing size * fix: extract out common functions * refactor: go back to `25` for debounce * fix: don't debounce on category/platform filters * refactor: extract some state out to file * chore: update based on upstream data * refactor: remove category pills * refactor: filter overhaul * feat(search filter): styling and a11y hammy made me push it! * style(search filter): less magic numbering, more proper stuff * feat(search filter): fix mobile layout and overscroll behaviour * feat(search filter): better scrollbar behaviour * refactor: adjust scroll behaviour * refactor: change search bar focus to mauve * fix: make sure ports page looks good when js is disabled * refactor: simplify placeholder text * refactor: tidy up state * feat: differentiate userstyles when ports are also shown * chore(deps): update * tests(e2e): add playwright * ci: add separate workflow for e2e * chore: try to fix ci and update deps --------- Co-authored-by: lemon <git@unseen.ninja>
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
/// <reference types="vitest" />
|
|
import { getViteConfig } from "astro/config";
|
|
|
|
export default getViteConfig({
|
|
test: {
|
|
include: ["src\/**\/*.test.ts"],
|
|
},
|
|
});
|