File size: 370 Bytes
f90ad9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e

echo "🚧 Instalando dependências e buildando frontend..."
npm install --prefix frontend
npm run build --prefix frontend

echo "🧹 Removendo build antigo em backend/dist..."
rm -rf backend/dist

echo "📁 Copiando build frontend para backend/dist..."
cp -r frontend/dist backend/

echo "✅ Build preparado para deploy no Hugging Face Spaces!"