Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Nuxt Minimal Starter
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install dependencies:
```bash
# npm
npm install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
```
Locally preview production build:
```bash
# npm
npm run preview
```
With docker
```bash
docker build -t 3spa .
docker run --rm -it -p 3000:3000 --env-file .env --name 3spa 3spa
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.