Fix npm ci to npm install in deployment docs
This commit is contained in:
@@ -377,7 +377,7 @@ See [docs/laravel-setup.md](docs/laravel-setup.md) for detailed configuration.
|
|||||||
# Edit .env with your settings
|
# Edit .env with your settings
|
||||||
php artisan key:generate
|
php artisan key:generate
|
||||||
php artisan migrate
|
php artisan migrate
|
||||||
npm ci && npm run build
|
npm install && npm run build
|
||||||
```
|
```
|
||||||
|
|
||||||
2. **Configure Nginx**
|
2. **Configure Nginx**
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ composer install --no-dev --optimize-autoloader --no-interaction
|
|||||||
|
|
||||||
# Install and build frontend assets
|
# Install and build frontend assets
|
||||||
echo "[4/9] Installing Node dependencies..."
|
echo "[4/9] Installing Node dependencies..."
|
||||||
npm ci --production=false
|
npm install
|
||||||
|
|
||||||
echo "[5/9] Building frontend assets..."
|
echo "[5/9] Building frontend assets..."
|
||||||
npm run build
|
npm run build
|
||||||
|
|||||||
@@ -191,7 +191,7 @@ composer install --no-dev --optimize-autoloader
|
|||||||
php artisan migrate --force
|
php artisan migrate --force
|
||||||
|
|
||||||
# Build assets
|
# Build assets
|
||||||
npm ci
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
# Clear caches
|
# Clear caches
|
||||||
|
|||||||
2852
src/package-lock.json
generated
Normal file
2852
src/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user