rudibridge-mirror/frontend
2024-05-13 15:50:02 +02:00
..
.vscode feat: added frontend 2024-05-12 11:31:51 +02:00
cypress feat: added frontend 2024-05-12 11:31:51 +02:00
nginx wip: production 2024-05-13 15:50:02 +02:00
public feat: added frontend 2024-05-12 11:31:51 +02:00
src wip: production 2024-05-13 15:50:02 +02:00
.eslintrc.cjs feat: added frontend 2024-05-12 11:31:51 +02:00
.gitignore feat: added frontend 2024-05-12 11:31:51 +02:00
.prettierrc.json feat: added frontend 2024-05-12 11:31:51 +02:00
cypress.config.ts feat: added frontend 2024-05-12 11:31:51 +02:00
Dockerfile wip: production 2024-05-13 15:50:02 +02:00
env.d.ts feat: added frontend 2024-05-12 11:31:51 +02:00
index.html feat: added frontend 2024-05-12 11:31:51 +02:00
package.json feat: added frontend 2024-05-12 11:31:51 +02:00
pnpm-lock.yaml feat: added frontend 2024-05-12 11:31:51 +02:00
postcss.config.js feat: added frontend 2024-05-12 11:31:51 +02:00
README.md feat: added frontend 2024-05-12 11:31:51 +02:00
tailwind.config.js feat: added frontend 2024-05-12 11:31:51 +02:00
tsconfig.app.json feat: added frontend 2024-05-12 11:31:51 +02:00
tsconfig.json feat: added frontend 2024-05-12 11:31:51 +02:00
tsconfig.node.json feat: added frontend 2024-05-12 11:31:51 +02:00
tsconfig.vitest.json feat: added frontend 2024-05-12 11:31:51 +02:00
vite.config.ts feat: added frontend 2024-05-12 11:31:51 +02:00
vitest.config.ts feat: added frontend 2024-05-12 11:31:51 +02:00

frontend

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

VSCode + Volar (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

pnpm install

Compile and Hot-Reload for Development

pnpm dev

Type-Check, Compile and Minify for Production

pnpm build

Run Unit Tests with Vitest

pnpm test:unit

Run End-to-End Tests with Cypress

pnpm test:e2e:dev

This runs the end-to-end tests against the Vite development server. It is much faster than the production build.

But it's still recommended to test the production build with test:e2e before deploying (e.g. in CI environments):

pnpm build
pnpm test:e2e

Lint with ESLint

pnpm lint