Website for toonpets
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Diego Vester 783c32ca9d Merge pull request 'Created a reusable BubbleContainer component with glassmorphism design featuring transparency, rounded borders, light/dark mode support, and multiple variants (default, subtle, prominent) with different padding options. Updated the About page to serve as a component library showcase demonstrating the BubbleContainer's various uses and configurations.' (#4) from ai/1769646695585 into main 2 months ago
.vscode chore: move Vue project to repo root 2 months ago
docs docs: add debugging notes for agent webhook 2 months ago
e2e chore: move Vue project to repo root 2 months ago
public chore: move Vue project to repo root 2 months ago
src Created a reusable BubbleContainer component with glassmorphism design featuring transparency, rounded borders, light/dark mode support, and multiple variants (default, subtle, prominent) with different padding options. Updated the About page to serve as a component library showcase demonstrating the BubbleContainer's various uses and configurations. 2 months ago
.editorconfig chore: move Vue project to repo root 2 months ago
.gitattributes chore: move Vue project to repo root 2 months ago
.gitignore chore: move Vue project to repo root 2 months ago
.oxlintrc.json chore: move Vue project to repo root 2 months ago
.prettierrc.json chore: move Vue project to repo root 2 months ago
LICENSE Initial commit 2 months ago
README.md docs: add preview notes 2 months ago
env.d.ts chore: move Vue project to repo root 2 months ago
eslint.config.ts chore: move Vue project to repo root 2 months ago
index.html feat: add title and opening line 2 months ago
package-lock.json chore: move Vue project to repo root 2 months ago
package.json chore: move Vue project to repo root 2 months ago
playwright.config.ts chore: move Vue project to repo root 2 months ago
tsconfig.app.json chore: move Vue project to repo root 2 months ago
tsconfig.json chore: move Vue project to repo root 2 months ago
tsconfig.node.json chore: move Vue project to repo root 2 months ago
tsconfig.vitest.json chore: move Vue project to repo root 2 months ago
vite.config.ts chore: move Vue project to repo root 2 months ago
vitest.config.ts chore: move Vue project to repo root 2 months ago

README.md

toonpets.corneruniverse.com

This template should help get you started developing with Vue 3 in Vite.

Preview

Preview builds auto-deploy on PR updates

Preview at preview.corneruniverse.com/{repo}/pr-{number}/

VS Code + Vue (Official) (and disable Vetur).

Type Support for .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need Volar to make the TypeScript language service aware of .vue types.

Customize configuration

See Vite Configuration Reference.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Run End-to-End Tests with Playwright

# Install browsers for the first run
npx playwright install

# When testing on CI, must build the project first
npm run build

# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chromium
npm run test:e2e -- --project=chromium
# Runs the tests of a specific file
npm run test:e2e -- tests/example.spec.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug

Lint with ESLint

npm run lint