initial commit

This commit is contained in:
Legonzaur
2026-07-04 16:40:34 +02:00
commit 2a3e1d2275
13 changed files with 13928 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
use nix
dotenv
+25
View File
@@ -0,0 +1,25 @@
# 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
.direnv
+75
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.
+14
View File
@@ -0,0 +1,14 @@
<template>
<div id="main">
<NuxtRouteAnnouncer />
<NuxtPage />
</div>
</template>
<style lang="css">
body,
#main {
height: 100vh;
margin: 0;
}
</style>
+13
View File
@@ -0,0 +1,13 @@
<template>
<ClientOnly>
<MglMap :map-style="style" :center="center" :zoom="zoom" height="100%">
<MglNavigationControl />
</MglMap>
</ClientOnly>
</template>
<script setup>
const style = "https://tiles.versatiles.org/assets/styles/colorful/style.json";
const center = [5.735, 45.185];
const zoom = 12;
</script>
+6
View File
@@ -0,0 +1,6 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt(
// Your custom configs here
)
+12
View File
@@ -0,0 +1,12 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2025-07-15",
devtools: { enabled: true },
modules: ["@nuxt/eslint", "nuxt-maplibre"],
vite: {
optimizeDeps: {
noDiscovery: true,
include: ["maplibre-gl"],
},
},
});
+13724
View File
File diff suppressed because it is too large Load Diff
+20
View File
@@ -0,0 +1,20 @@
{
"name": "better-mrso",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/eslint": "^1.16.0",
"eslint": "^10.6.0",
"nuxt": "^4.4.8",
"nuxt-maplibre": "^1.2.2",
"vue": "^3.5.38",
"vue-router": "^5.1.0"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

+2
View File
@@ -0,0 +1,2 @@
User-Agent: *
Disallow:
+17
View File
@@ -0,0 +1,17 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
pkg-config,
openssl,
}:
mkShell {
strictDeps = true;
buildInputs = with pkgs; [
nodejs_24
];
}
) { }
+18
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"
}
]
}