feat: app icon and readme

This commit is contained in:
2025-10-09 04:33:31 +02:00
parent 3972fbfa65
commit d206348fc1
3 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ RUN pnpm install --frozen-lockfile
COPY . .
# Generate static site
RUN pnpm build
RUN pnpm generate
# Production stage
FROM nginx:alpine

View File

@@ -1,6 +1,5 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
modules: [
'@nuxt/eslint',
'@nuxt/image',

View File

@@ -3,6 +3,7 @@
"private": true,
"type": "module",
"scripts": {
"generate": "nuxi generate",
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",