Website for Lukastitch. Hi there! My name is Mimi and I have been a plushie artist since 2018. I have always loved plushies as a kid and now I hope my plushies bring others the same happiness!
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 45c44af104 Merge pull request 'feat: change brand name' (#6) from feat-change-brand-name into main 2 months ago
docs feat: change codebase structure 2 months ago
e2e feat: add initial vue project 2 months ago
public feat: change website title 2 months ago
src feat: add content to about page 2 months ago
.gitignore Initial commit 2 months ago
LICENSE Initial commit 2 months ago
README.md docs: add biography to README.md 2 months ago
env.d.ts feat: add initial vue project 2 months ago
eslint.config.ts feat: add initial vue project 2 months ago
index.html feat: change website title 2 months ago
package-lock.json chore: add package-lock.json 2 months ago
package.json feat: add initial vue project 2 months ago
playwright.config.ts feat: add initial vue project 2 months ago
tsconfig.app.json feat: add initial vue project 2 months ago
tsconfig.json feat: add initial vue project 2 months ago
tsconfig.node.json feat: add initial vue project 2 months ago
tsconfig.vitest.json feat: add initial vue project 2 months ago
vite.config.ts feat: add initial vue project 2 months ago
vitest.config.ts feat: add initial vue project 2 months ago

README.md

lukastitch.corneruniverse.com

Hi there! My name is Mimi and I have been a plushie artist since 2018. I have always loved plushies as a kid and now I hope my plushies bring others the same happiness!

Vue Web App

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

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