Skip to content

Commit 3481078

Browse files
committed
feat: init project
0 parents  commit 3481078

10 files changed

+12607
-0
lines changed

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Nuxt dev/build outputs
2+
.output
3+
.data
4+
.nuxt
5+
.nitro
6+
.cache
7+
dist
8+
9+
# Node dependencies
10+
node_modules
11+
12+
# Logs
13+
logs
14+
*.log
15+
16+
# Misc
17+
.DS_Store
18+
.fleet
19+
.idea
20+
21+
# Local env files
22+
.env
23+
.env.*
24+
!.env.example

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
shamefully-hoist=true
2+
strict-peer-dependencies=false

README.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Nuxt 3 Minimal Starter
2+
3+
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
4+
5+
## Setup
6+
7+
Make sure to install the dependencies:
8+
9+
```bash
10+
# npm
11+
npm install
12+
13+
# pnpm
14+
pnpm install
15+
16+
# yarn
17+
yarn install
18+
```
19+
20+
## Development Server
21+
22+
Start the development server on `http://localhost:3000`:
23+
24+
```bash
25+
# npm
26+
npm run dev
27+
28+
# pnpm
29+
pnpm run dev
30+
31+
# yarn
32+
yarn dev
33+
```
34+
35+
## Production
36+
37+
Build the application for production:
38+
39+
```bash
40+
# npm
41+
npm run build
42+
43+
# pnpm
44+
pnpm run build
45+
46+
# yarn
47+
yarn build
48+
```
49+
50+
Locally preview production build:
51+
52+
```bash
53+
# npm
54+
npm run preview
55+
56+
# pnpm
57+
pnpm run preview
58+
59+
# yarn
60+
yarn preview
61+
```
62+
63+
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

app.vue

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<div>
3+
<NuxtWelcome />
4+
</div>
5+
</template>

nuxt.config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// https://nuxt.com/docs/api/configuration/nuxt-config
2+
export default defineNuxtConfig({
3+
devtools: { enabled: true }
4+
})

0 commit comments

Comments
 (0)