Fix npm ci to npm install in deployment docs

This commit is contained in:
2026-03-12 09:48:17 +02:00
parent c39a04315c
commit fa4c787beb
4 changed files with 2855 additions and 3 deletions

View File

@@ -377,7 +377,7 @@ See [docs/laravel-setup.md](docs/laravel-setup.md) for detailed configuration.
# Edit .env with your settings
php artisan key:generate
php artisan migrate
npm ci && npm run build
npm install && npm run build
```
2. **Configure Nginx**

View File

@@ -36,7 +36,7 @@ composer install --no-dev --optimize-autoloader --no-interaction
# Install and build frontend assets
echo "[4/9] Installing Node dependencies..."
npm ci --production=false
npm install
echo "[5/9] Building frontend assets..."
npm run build

View File

@@ -191,7 +191,7 @@ composer install --no-dev --optimize-autoloader
php artisan migrate --force
# Build assets
npm ci
npm install
npm run build
# Clear caches

2852
src/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff