Skip to content

Commit

Permalink
uuuuugh
Browse files Browse the repository at this point in the history
  • Loading branch information
DexrnZacAttack committed Oct 30, 2024
1 parent 24b4a32 commit 305213c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default withPwa(defineConfig({
description: 'Documentation for Project Lodestone and various file formats and mechanics for many versions and editions of Minecraft.',
lastUpdated: true,
outDir: "dist",
base: "/Documentation/",
sitemap: {
hostname: 'https://team-lodestone.github.io/Documentation/'
},
Expand Down Expand Up @@ -51,19 +52,19 @@ export default withPwa(defineConfig({
},
head: [
// gotta have all the meta tags
['link', { rel: 'icon', href: '/assets/Lodestone_Favicon.png' }],
['link', { rel: 'shortcut icon', href: '/assets/Lodestone_Favicon.png' }],
['link', { rel: 'apple-touch-icon', sizes: '512x512', href: '/assets/Dexrn_Lodestone_Logo.png' }],
['link', { rel: 'stylesheet', type: 'text/css', href: '/assets/lodestone.css' }],
['meta', { property: 'og:image', content: '/assets/LodestoneBg.jpg' }],
['link', { rel: 'icon', href: '/Documentation/assets/Lodestone_Favicon.png' }],
['link', { rel: 'shortcut icon', href: '/Documentation/assets/Lodestone_Favicon.png' }],
['link', { rel: 'apple-touch-icon', sizes: '512x512', href: '/Documentation/assets/Dexrn_Lodestone_Logo.png' }],
['link', { rel: 'stylesheet', type: 'text/css', href: '/Documentation/assets/lodestone.css' }],
['meta', { property: 'og:image', content: '/Documentation/assets/LodestoneBg.jpg' }],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'theme-color', content: '#AD95ED' }],
['meta', { name: 'description', content: 'Documentation for Project Lodestone and various file formats and mechanics for many versions and editions of Minecraft.' }],
// do these even do anything
['meta', { name: 'keywords', content: 'minecraft, lodestone, world converter, converter, legacy console edition, lce, java edition, java, documentation, bedrock edition, bedrock, pi edition, pi, 3ds edition, 3ds' }],
// lol does this mean it can be shoved into the start menu as a "live" tile
['meta', { name: 'msapplication-TileColor', content: '#AD95ED' }],
['meta', { name: 'msapplication-TileImage', content: '/assets/Dexrn_Lodestone_Logo.png' }],
['meta', { name: 'msapplication-TileImage', content: '/Documentation/assets/Dexrn_Lodestone_Logo.png' }],
],
vite: {
server: {
Expand All @@ -82,7 +83,7 @@ export default withPwa(defineConfig({
head.push(['meta', { name: 'twitter:title', content: "Project Lodestone - Documentation > " + pageData.relativePath }]);
head.push(['meta', { name: 'twitter:description', content: "Documentation for Project Lodestone and various file formats and mechanics for many versions and editions of Minecraft." }]);
head.push(['meta', { name: 'twitter:url', content: 'https://Team-Lodestone.github.io/Documentation/' + pageData.relativePath }]);
head.push(['meta', { name: 'twitter:image', content: '/assets/LodestoneBg.jpg' }]);
head.push(['meta', { name: 'twitter:image', content: '/Documentation/assets/LodestoneBg.jpg' }]);

return head
},
Expand All @@ -96,7 +97,7 @@ export default withPwa(defineConfig({
theme_color: '#493189',
icons: [
{
src: '/assets/Dexrn_Lodestone_Logo.png',
src: '/Documentation/assets/Dexrn_Lodestone_Logo.png',
sizes: '512x512',
type: 'image/png',
},
Expand Down

0 comments on commit 305213c

Please sign in to comment.