Fix the base path

This commit is contained in:
Vladyslav Fedoriuk 2023-09-20 00:52:02 +02:00
parent 70320edf6c
commit a2c9a7db12
2 changed files with 2 additions and 1 deletions

View File

@ -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:

View File

@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
basePath: "/github-pages",
basePath: "/awesome-fastapi-projects",
};
module.exports = nextConfig;