🎉 Initial commit

This commit is contained in:
2025-10-23 09:56:18 +02:00
commit 22982921d9
12 changed files with 1964 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist
# Node dependencies
node_modules
# Logs
logs
*.log
# Misc
.DS_Store
.fleet
.idea
# Local env files
.env
.env.*
!.env.example

75
README.md Normal file
View File

@@ -0,0 +1,75 @@
# 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
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

8
app/app.vue Normal file
View File

@@ -0,0 +1,8 @@
<template>
<UApp>
<NuxtLayout>
<p>Hello world!</p>
<NuxtPage />
</NuxtLayout>
</UApp>
</template>

2
app/assets/css/main.css Normal file
View File

@@ -0,0 +1,2 @@
@import "tailwindcss";
@import "@nuxt/ui";

10
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,10 @@
<template>
<slot />
</template>
<script lang="ts" setup>
useHead({
title: "Food Not Bombs",
link: [{ rel: "icon", type: "image/png", href: "/logo.png" }],
});
</script>

3
app/pages/index.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<p>Index!!!</p>
</template>

1795
bun.lock Normal file

File diff suppressed because it is too large Load Diff

7
nuxt.config.ts Normal file
View File

@@ -0,0 +1,7 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2025-07-15",
devtools: { enabled: true },
modules: ["@nuxt/image", "@nuxt/ui"],
css: ["~/assets/css/main.css"]
});

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "fnb",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/image": "1.11.0",
"@nuxt/ui": "4.0.1",
"nuxt": "^4.1.3",
"typescript": "^5.6.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
}
}

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

2
public/robots.txt Normal file
View File

@@ -0,0 +1,2 @@
User-Agent: *
Allow: /

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"files": [],
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
}
]
}