Initialize frontend app (#112)

This commit is contained in:
Salih Altun
2024-03-20 21:09:47 +03:00
committed by GitHub
parent 042fba91ae
commit a27e1dcd81
16 changed files with 3688 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# Skyvern Frontend
## Development
```sh
npm run dev
```
This will start the development server with hot module replacement.
## Build for production
```sh
npm run build
```
This will make a production build in the `dist` directory, ready to be served.
## Preview the production build locally
```sh
npm run preview
```
or alternatively, use the `serve` package:
```sh
npx serve@latest dist
```