From 6934926136fb48068781f32a6d9eb64d4c6e3297 Mon Sep 17 00:00:00 2001 From: Guusvanmeerveld Date: Tue, 22 Mar 2022 16:38:53 +0100 Subject: [PATCH] Added base path for Github actions + rename application --- next.config.js | 3 ++- package.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/next.config.js b/next.config.js index 76eb6f9..840cfd5 100644 --- a/next.config.js +++ b/next.config.js @@ -9,5 +9,6 @@ module.exports = { }, eslint: { ignoreDuringBuilds: true - } + }, + basePath: process.env.CI == "true" ? "/MaterialTube" : "" }; diff --git a/package.json b/package.json index fd57deb..2839c22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "fouctube", - "displayName": "FoucTube", + "name": "material-tube", + "displayName": "MaterialTube", "license": "MIT", "scripts": { "dev": "next dev",