From 3bc963949e6760ae6e0a5a4efac6b3b441dc95a7 Mon Sep 17 00:00:00 2001 From: Emmanuel Itighise <77761768+EmeditWeb@users.noreply.github.com> Date: Wed, 17 Jun 2026 10:20:38 +0100 Subject: [PATCH] Revert "Deploy StepFi-Web to Vercel" --- .github/workflows/ci.yml | 31 ------------------------------- README.md | 2 -- vercel.json | 6 ------ 3 files changed, 39 deletions(-) delete mode 100644 .github/workflows/ci.yml delete mode 100644 vercel.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 98d3b75..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Lint - run: npm run lint - - - name: Build - run: npm run build - env: - VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL }} diff --git a/README.md b/README.md index 60de66f..9cac044 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ React TypeScript web application for the StepFi BNPL protocol on Stellar. -**Live URL:** https://stepfi-web.vercel.app - ## Stack Vite, React 18, TypeScript, Tailwind CSS, Zustand, TanStack Query, Freighter API diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 170b3f6..0000000 --- a/vercel.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "framework": "vite", - "buildCommand": "npm run build", - "outputDirectory": "dist", - "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }] -}