Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 605 Bytes

File metadata and controls

35 lines (24 loc) · 605 Bytes

vite

Used for end-to-end testing and development purposes.

Quick Start

# First, build the library locally
bun run build

# Create a local link to the library
bun link

# When developing, rebuild the library when making changes
bun run build -w

In this folder, you can run the following commands:

# Install dependencies
bun i

Run the app in development mode. This should only apply the optimizeImports preprocessor.

bun run dev

Build the app for production. This should run both the optimizeImports and optimizeCss preprocessors.

bun run build