File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 11import { defineConfig } from "vitepress" ;
22import { rules } from "./rulesForSidebar" ;
33import { description , version } from "../../package.json" ;
4- import { BASE_URL } from "./constants" ;
54
65// https://vitepress.dev/reference/site-config
76export default defineConfig ( {
87 title : "eslint-plugin-vuejs-a11y" ,
9- base : BASE_URL ,
8+ base : "/eslint-plugin-vuejs-accessibility/" ,
109 description,
1110 head : [
1211 [
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import { join , parse } from "node:path" ;
22import { Dirent , readdirSync } from "node:fs" ;
3- import { BASE_URL } from "./constants" ;
43
54export const rules = getRulesForSideBar ( ) ;
65
@@ -30,6 +29,6 @@ function fileNameWithoutExtension(file: Dirent) {
3029function ruleToSidebarItem ( ruleName : string ) {
3130 return {
3231 text : ruleName ,
33- link : `${ BASE_URL } rules/${ ruleName } `
32+ link : `/ rules/${ ruleName } `
3433 } ;
3534}
You can’t perform that action at this time.
0 commit comments