From a2c9a7db12b42281c37c6405610590f254a7be43 Mon Sep 17 00:00:00 2001 From: Vladyslav Fedoriuk Date: Wed, 20 Sep 2023 00:52:02 +0200 Subject: [PATCH] Fix the base path --- .github/workflows/scraping.yaml | 1 + frontend/next.config.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/scraping.yaml b/.github/workflows/scraping.yaml index 1bcb815..f64200b 100644 --- a/.github/workflows/scraping.yaml +++ b/.github/workflows/scraping.yaml @@ -8,6 +8,7 @@ name: Scraping the repositories from Source Graph # TODO: split the commands to scrap repos and parse the dependencies # TODO: a job for index generation +# TODO: set proper concurrency settings on: [push] jobs: diff --git a/frontend/next.config.js b/frontend/next.config.js index 1b7d2e9..3538617 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", - basePath: "/github-pages", + basePath: "/awesome-fastapi-projects", }; module.exports = nextConfig;