Set base path to properly load JS and CSS

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

View File

@ -6,7 +6,7 @@ name: Scraping the repositories from Source Graph
# # https://crontab.guru/#0_0_*_*_*
# - cron: '0 0 * * *'
# TODO: split the commands to crapr repos and parse the dependencies
# TODO: split the commands to scrap repos and parse the dependencies
# TODO: a job for index generation
on: [push]

View File

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