Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 1.66 KB

README.md

File metadata and controls

72 lines (50 loc) · 1.66 KB

SPA with vite

A sortable posts application with vue 3 and vite.

image

Table of Contents

Installation

To install all the required dependencies, run:

npm install

Development

To start the development server, run:

npm run dev

This will start the Vite development server. Navigate to http://localhost:5173/ to view the app.

Build

To create a production build, run:

npm run build

The build artifacts will be stored in the dist directory.

Testing

To run the tests, execute:

npm test

You can also type check the project with:

npm run typecheck

Project Structure

├── src/                  # Application source code
│   ├── atoms/            # Unopinionated UI components
│   ├── components/       # Opinionated UI components
│   ├── composables/      # Vue Composables
│   ├── queries/          # Query functions and adapters
│   ├── styles/           # Global styles and variables
│   ├── types/            # Type definitions
│   ├── utils/            # Utility functions
│   └── main.ts           # Entry point for the application
├── public/               # Public static assets
├── jest.config.js        # Jest configuration file
└── vite.config.ts        # Vite configuration file