File tree Expand file tree Collapse file tree 10 files changed +12447
-0
lines changed Expand file tree Collapse file tree 10 files changed +12447
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ # Nuxt Minimal Starter
2+
3+ Look at the [ Nuxt documentation] ( https://nuxt.com/docs/getting-started/introduction ) to learn more.
4+
5+ ## Setup
6+
7+ Make sure to install dependencies:
8+
9+ ``` bash
10+ # npm
11+ npm install
12+
13+ # pnpm
14+ pnpm install
15+
16+ # yarn
17+ yarn install
18+
19+ # bun
20+ bun install
21+ ```
22+
23+ ## Development Server
24+
25+ Start the development server on ` http://localhost:3000 ` :
26+
27+ ``` bash
28+ # npm
29+ npm run dev
30+
31+ # pnpm
32+ pnpm dev
33+
34+ # yarn
35+ yarn dev
36+
37+ # bun
38+ bun run dev
39+ ```
40+
41+ ## Production
42+
43+ Build the application for production:
44+
45+ ``` bash
46+ # npm
47+ npm run build
48+
49+ # pnpm
50+ pnpm build
51+
52+ # yarn
53+ yarn build
54+
55+ # bun
56+ bun run build
57+ ```
58+
59+ Locally preview production build:
60+
61+ ``` bash
62+ # npm
63+ npm run preview
64+
65+ # pnpm
66+ pnpm preview
67+
68+ # yarn
69+ yarn preview
70+
71+ # bun
72+ bun run preview
73+ ```
74+
75+ Check out the [ deployment documentation] ( https://nuxt.com/docs/getting-started/deployment ) for more information.
76+
77+ ## Primevue
78+
79+ ``` sh
80+ npx nuxi@latest module add primevue
81+ ```
Original file line number Diff line number Diff line change 1+ <template >
2+ <div >
3+ <Test />
4+ </div >
5+ </template >
Original file line number Diff line number Diff line change 1+ <script setup lang="ts">
2+
3+ </script >
4+
5+ <template >
6+ <Button >Hello World!</Button >
7+ </template >
Original file line number Diff line number Diff line change 1+ import Aura from '@primeuix/themes/aura' ;
2+
3+ // https://nuxt.com/docs/api/configuration/nuxt-config
4+ export default defineNuxtConfig ( {
5+ compatibilityDate : '2025-07-15' ,
6+ devtools : { enabled : true } ,
7+ typescript : {
8+ typeCheck : true
9+ } ,
10+ modules : [
11+ '@primevue/nuxt-module'
12+ ] ,
13+ primevue : {
14+ options : {
15+ theme : {
16+ preset : Aura
17+ }
18+ }
19+ }
20+ } )
You can’t perform that action at this time.
0 commit comments