You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaweb/README.md

76 lines
842 B
Markdown

4 months ago
# Nuxt 3 Minimal Starter
4 months ago
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
4 months ago
# npm
npm install
4 months ago
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
4 months ago
## Development Server
Start the development server on `http://localhost:3000`:
```bash
4 months ago
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
```
4 months ago
## Production
Build the application for production:
```bash
4 months ago
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
```
4 months ago
Locally preview production build:
```bash
4 months ago
# npm
npm run preview
4 months ago
# pnpm
pnpm run preview
4 months ago
# yarn
yarn preview
4 months ago
# bun
bun run preview
```
4 months ago
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.