From cb6180e79847a2965499474660ccac9eb52fdb78 Mon Sep 17 00:00:00 2001 From: tsengyushiang Date: Sun, 1 Sep 2024 13:56:08 +0800 Subject: [PATCH] fix: change baseURL --- jsdoc.json | 8 ++++---- vite.config.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jsdoc.json b/jsdoc.json index 3012559..7d3783c 100644 --- a/jsdoc.json +++ b/jsdoc.json @@ -14,21 +14,21 @@ "theme_opts": { "default_theme": "light", "title": "Three Coverage Heatmap", - "base_url": "https://yushiang-demo.github.io/coverage-heatmap/doc/", + "base_url": "https://yushiang-demo.github.io/coverage-visualizer/doc/", "menu": [ { "title": "Demo", - "link": "/coverage-heatmap", + "link": "/coverage-visualizer", "target": "_blank" }, { "title": "Github", - "link": "https://github.com/yushiang-demo/coverage-heatmap", + "link": "https://github.com/yushiang-demo/coverage-visualizer", "target": "_blank" }, { "title": "React Coverage Heatmap", - "link": "/coverage-heatmap/storybook/", + "link": "/coverage-visualizer/storybook/", "target": "_blank" } ] diff --git a/vite.config.js b/vite.config.js index 3b9bcfe..ef34a2d 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,5 +4,5 @@ import react from "@vitejs/plugin-react"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], - base: "/coverage-heatmap", + base: "/coverage-visualizer", });