Bez popisu

0es e9c3a5789c Refactor Sentry configuration and clean up .gitignore před 3 měsíci
.cursor 4ff90b5ee1 Add Sentry integration to Nuxt configuration and update .gitignore před 3 měsíci
.vscode dce5ec98ff Add ESLint support and Google Sign-In integration před 4 měsíci
app e9c3a5789c Refactor Sentry configuration and clean up .gitignore před 3 měsíci
i18n 93d21c2754 Implement localization for order button and update profile button text před 3 měsíci
public feb473b91c Refactor image handling in components to use NuxtImg and improve avatar loading před 4 měsíci
server e9c3a5789c Refactor Sentry configuration and clean up .gitignore před 3 měsíci
.gitignore e9c3a5789c Refactor Sentry configuration and clean up .gitignore před 3 měsíci
README.md 7666f3cad5 Init před 4 měsíci
ecosystem.config.cjs c7f87fbc99 Remove ecosystem.config.js file to simplify project structure před 4 měsíci
eslint.config.mjs dce5ec98ff Add ESLint support and Google Sign-In integration před 4 měsíci
nuxt.config.ts 4ff90b5ee1 Add Sentry integration to Nuxt configuration and update .gitignore před 3 měsíci
package.json 4ff90b5ee1 Add Sentry integration to Nuxt configuration and update .gitignore před 3 měsíci
sentry.client.config.ts e9c3a5789c Refactor Sentry configuration and clean up .gitignore před 3 měsíci
sentry.server.config.ts e9c3a5789c Refactor Sentry configuration and clean up .gitignore před 3 měsíci
tsconfig.json 7666f3cad5 Init před 4 měsíci
vite-env.d.ts 1c0b0f889b Update Nuxt configuration and styles: change CSS path in nuxt.config.ts, enhance SVG loader configuration, and add SCSS support. Update main.css to include Poppins font and theme variables. Refactor index.vue to improve layout and integrate new components. před 4 měsíci
yarn.lock 4ff90b5ee1 Add Sentry integration to Nuxt configuration and update .gitignore před 3 měsíci

README.md

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.