migrate on nuxt3

This commit is contained in:
2025-06-17 17:46:03 +04:00
parent 7634a3d616
commit 727fa976bd
123 changed files with 20963 additions and 1815 deletions

View File

@ -1,27 +1,75 @@
# Проект сайт vino Galante
# Nuxt Minimal Starter
## Описание проекта
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
Интернет сайт Vino Galente создан для продажи книг за авторством...
## Setup
### Установка, для разработки
Make sure to install dependencies:
Копируем env
```bash
# npm
npm install
```
cp frontend.env frontend.env.example
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
Устанавливаем зависимости
## Development Server
```
yarn
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
Запуск dev
## Production
```
vite
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Разворачивание, docker
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.