Skip to content

Commit 6306f1e

Browse files
committed
first commit
0 parents  commit 6306f1e

18 files changed

+7383
-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

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shamefully-hoist=true

README.md

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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+
# 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 run 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 run 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 run 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.

app.config.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
export default defineAppConfig({
2+
ui: {
3+
primary: "green",
4+
gray: "cool",
5+
formGroup: {
6+
help: "text-xs mt-1 text-gray-500 dark:text-gray-400",
7+
error: "text-xs mt-1 text-red-500 dark:text-red-400",
8+
label: {
9+
base: "text-sm block font-medium text-gray-500 dark:text-gray-200",
10+
},
11+
},
12+
button: {
13+
rounded:
14+
"rounded-lg transition-transform active:scale-x-[0.98] active:scale-y-[0.99]",
15+
},
16+
modal: {
17+
overlay: {
18+
background: "bg-[rgba(0,8,47,.275)] saturate-50",
19+
},
20+
padding: "p-0",
21+
rounded: "rounded-t-2xl sm:rounded-xl",
22+
transition: {
23+
enterFrom: "opacity-0 translate-y-full sm:translate-y-0 sm:scale-x-95",
24+
leaveFrom: "opacity-100 translate-y-0 sm:scale-x-100",
25+
},
26+
},
27+
},
28+
});

app.vue

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<NuxtLoadingIndicator />
3+
<NuxtPage />
4+
<UNotifications />
5+
</template>

0 commit comments

Comments
 (0)