chore: update ant-design dependencies and add new icon types

This commit is contained in:
Luiz Costa
2025-11-18 09:39:51 -03:00
parent 775e562fe9
commit 5c0094d74e
22648 changed files with 2140248 additions and 29 deletions
+8 -1
View File
@@ -19,7 +19,14 @@ cd ..
# Passo 2: Build do Backend (Go)
echo "🔨 Compilando o backend com arquivos embedados..."
go build -o web-tail-pro ./backend/main.go
echo "📁 Copiando artefatos do frontend para backend/dist..."
rm -rf backend/dist
mkdir -p backend/dist
cp -r frontend/dist/* backend/dist/
cd backend
go mod tidy
go build -o ../web-tail-pro ./main.go
cd ..
if [ $? -ne 0 ]; then
echo "❌ Falha na compilação do backend. Abortando."