mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
fix: updated vitepress
This commit is contained in:
parent
60f161a480
commit
3be8029ebc
@ -1,7 +1,8 @@
|
||||
import fs from 'fs';
|
||||
import {readFileSync} from 'fs';
|
||||
import { defineConfig } from 'vitepress';
|
||||
import {resolve} from 'path'
|
||||
|
||||
const read = (relative) => fs.readFileSync(require.resolve(relative), 'utf-8');
|
||||
const read = (relative) => readFileSync(resolve(process.cwd(), 'docs', '.vitepress', relative), 'utf-8');
|
||||
|
||||
const isVersion = process.argv.indexOf('--base');
|
||||
const VERSION = isVersion > -1 ? process.argv[isVersion + 1].slice(1, -1) : 'Latest';
|
||||
@ -1,10 +1,14 @@
|
||||
:root {
|
||||
--vp-c-brand: hsl(35, 78%, 53%);
|
||||
--vp-c-brand-1: hsl(35, 78%, 53%);
|
||||
|
||||
--vp-button-brand-bg: hsl(35, 78%, 53%);
|
||||
--vp-button-brand-active-bg: hsla(35, 78%, 53%, 36.5%);
|
||||
--vp-button-brand-hover-bg: hsl(35, 78%, 53%);
|
||||
|
||||
--vp-c-brand-light: hsla(35, 78%, 53%, 36.5%);
|
||||
--vp-c-brand-lighter: hsla(35, 78%, 53%, 36.5%);
|
||||
--vp-c-brand-dark: hsl(35, 78%, 53%);
|
||||
--vp-c-brand-darker: hsl(35, 78%, 53%);
|
||||
--vp-c-brand-dimm: #363636;
|
||||
|
||||
--vp-home-hero-name-color: transparent;
|
||||
--vp-home-hero-name-background: -webkit-linear-gradient(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user