Skip to content

Commit

Permalink
refactor: add proper logo config
Browse files Browse the repository at this point in the history
  • Loading branch information
3rdvision committed Mar 2, 2023
1 parent 749c95c commit 236766e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ package-lock.json
/src/python/ripe_demo/static/js/ripe.three.min.js.map
/src/python/ripe_demo/static/css/ripe.css

/documentation/src/.vuepress
/documentation/src/.vuepress/.cache
/documentation/src/.vuepress/.temp
/documentation/src/.vuepress/dist
/documentation/node_modules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { defineUserConfig, defaultTheme } from "vuepress"

export default defineUserConfig({
title: "RIPE SDK - Client Side Rendering",
description: "Documentation for RIPE SDK",
lang: "en-US",
theme: defaultTheme({
logo: '/images/logo.svg',
contributors: false,
lastUpdated: false
})
})
import { defineUserConfig, defaultTheme } from "vuepress";

export default defineUserConfig({
title: "RIPE SDK - Client Side Rendering",
description: "Documentation for RIPE SDK",
lang: "en-US",
theme: defaultTheme({
logo: "/images/logo.svg",
contributors: false,
lastUpdated: false
})
});
File renamed without changes

0 comments on commit 236766e

Please sign in to comment.