diff --git a/astro.config.mjs b/astro.config.mjs index 7bc52f9024..10c1e274f3 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,11 +4,24 @@ import vue from "@astrojs/vue"; import tailwind from "@astrojs/tailwind"; import starlightThemeObsidian from "starlight-theme-obsidian"; import sitemap from "@astrojs/sitemap"; +import path from "node:path"; // https://astro.build/config export default defineConfig({ site: "https://www.setup.md", trailingSlash: "never", + vite: { + resolve: { + alias: { + "@components": path.resolve("./src/components"), + "@content": path.resolve("./src/content"), + "@assets": path.resolve("./src/assets"), + "@styles": path.resolve("./src/styles"), + "@fonts": path.resolve("./src/fonts"), + "@utils": path.resolve("./src/utils"), + } + } + }, build: { format: "file", }, diff --git a/src/content/docs/enhancements/Anti-X Tools/anticheat.mdx b/src/content/docs/enhancements/Anti-X Tools/anticheat.mdx index 40a3ed85a7..45f9e195b8 100644 --- a/src/content/docs/enhancements/Anti-X Tools/anticheat.mdx +++ b/src/content/docs/enhancements/Anti-X Tools/anticheat.mdx @@ -5,7 +5,7 @@ title: Anti-Cheats lastUpdated: 2024-02-25 --- -import MainStatusPill from '../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; :::info diff --git a/src/content/docs/enhancements/Anti-X Tools/antiexploit.mdx b/src/content/docs/enhancements/Anti-X Tools/antiexploit.mdx index 1ee39234bd..cac578da72 100644 --- a/src/content/docs/enhancements/Anti-X Tools/antiexploit.mdx +++ b/src/content/docs/enhancements/Anti-X Tools/antiexploit.mdx @@ -5,7 +5,7 @@ title: Anti-Exploit lastUpdated: 2024-02-25 --- -import MainStatusPill from '../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; Anti-Exploit plugins resolve issues such as crashes, dupes, abusive NBT etc. diff --git a/src/content/docs/enhancements/Anti-X Tools/antilag.mdx b/src/content/docs/enhancements/Anti-X Tools/antilag.mdx index 0d6fa53294..98f1fada11 100644 --- a/src/content/docs/enhancements/Anti-X Tools/antilag.mdx +++ b/src/content/docs/enhancements/Anti-X Tools/antilag.mdx @@ -5,7 +5,7 @@ title: Anti-Lag lastUpdated: 2024-02-25 --- -import MainStatusPill from '../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; Below is a list of tools and optimisations you can use to identify and mitigate TPS (server) lag. diff --git a/src/content/docs/enhancements/Anti-X Tools/antixray.mdx b/src/content/docs/enhancements/Anti-X Tools/antixray.mdx index e817d03bc0..8c958212d4 100644 --- a/src/content/docs/enhancements/Anti-X Tools/antixray.mdx +++ b/src/content/docs/enhancements/Anti-X Tools/antixray.mdx @@ -4,7 +4,7 @@ slug: e/anti-x/ax title: Anti-Xray lastUpdated: 2024-02-25 --- -import MainStatusPill from '../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; As the name suggests, Anti-Xray will prevent players from finding ores using Xray clients/resource packs. This is done by sending packets to the player where all of the ores are replaced by stone. The ores only appear if the player establishes direct visual contact with them/updates them. Two of the most common Anti-Xray plugins are shown below: diff --git a/src/content/docs/enhancements/Anti-X Tools/intro.mdx b/src/content/docs/enhancements/Anti-X Tools/intro.mdx index f69ae411eb..ae6fe6b5ad 100644 --- a/src/content/docs/enhancements/Anti-X Tools/intro.mdx +++ b/src/content/docs/enhancements/Anti-X Tools/intro.mdx @@ -5,7 +5,7 @@ description: Understand the types of 'preventative' tools that exist for Minecra title: Introduction --- -import MainStatusPill from '../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; Minecraft is an open game by nature and as great as that is, it doesn't always work in every servers favour and sometimes they need to make changes in order to restrict certain aspects of gameplay for any number of multiple reasons. diff --git a/src/content/docs/enhancements/Plugins/Free/MiniMOTD.mdx b/src/content/docs/enhancements/Plugins/Free/MiniMOTD.mdx index 5009a1d10c..173e2a1aa2 100644 --- a/src/content/docs/enhancements/Plugins/Free/MiniMOTD.mdx +++ b/src/content/docs/enhancements/Plugins/Free/MiniMOTD.mdx @@ -5,7 +5,7 @@ title: MiniMOTD lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/auctionhouse.mdx b/src/content/docs/enhancements/Plugins/Free/auctionhouse.mdx index 4482b1feb3..7cc5cb7112 100644 --- a/src/content/docs/enhancements/Plugins/Free/auctionhouse.mdx +++ b/src/content/docs/enhancements/Plugins/Free/auctionhouse.mdx @@ -4,7 +4,7 @@ slug: e/pl/auctionhouse title: AuctionHouse lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/chestshop.mdx b/src/content/docs/enhancements/Plugins/Free/chestshop.mdx index da1715bab9..fd08cfa47a 100644 --- a/src/content/docs/enhancements/Plugins/Free/chestshop.mdx +++ b/src/content/docs/enhancements/Plugins/Free/chestshop.mdx @@ -5,7 +5,7 @@ title: ChestShop lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/discordsrv.mdx b/src/content/docs/enhancements/Plugins/Free/discordsrv.mdx index ba6b27e748..e87b7028fa 100644 --- a/src/content/docs/enhancements/Plugins/Free/discordsrv.mdx +++ b/src/content/docs/enhancements/Plugins/Free/discordsrv.mdx @@ -5,7 +5,7 @@ title: DiscordSRV lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/dukesmart.mdx b/src/content/docs/enhancements/Plugins/Free/dukesmart.mdx index 642de53a3e..f7d8aa0bbc 100644 --- a/src/content/docs/enhancements/Plugins/Free/dukesmart.mdx +++ b/src/content/docs/enhancements/Plugins/Free/dukesmart.mdx @@ -5,7 +5,7 @@ title: DukesMart lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/essentialsx.mdx b/src/content/docs/enhancements/Plugins/Free/essentialsx.mdx index 27cf9c8cda..1dc01292fa 100644 --- a/src/content/docs/enhancements/Plugins/Free/essentialsx.mdx +++ b/src/content/docs/enhancements/Plugins/Free/essentialsx.mdx @@ -9,7 +9,7 @@ sidebar: variant: success --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/luckperms.mdx b/src/content/docs/enhancements/Plugins/Free/luckperms.mdx index 0f578d7d51..6f54920b54 100644 --- a/src/content/docs/enhancements/Plugins/Free/luckperms.mdx +++ b/src/content/docs/enhancements/Plugins/Free/luckperms.mdx @@ -9,7 +9,7 @@ sidebar: variant: success --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/playerauctions.mdx b/src/content/docs/enhancements/Plugins/Free/playerauctions.mdx index 40319d6047..bd33d085d4 100644 --- a/src/content/docs/enhancements/Plugins/Free/playerauctions.mdx +++ b/src/content/docs/enhancements/Plugins/Free/playerauctions.mdx @@ -4,7 +4,7 @@ slug: e/pl/playerauctions title: PlayerAuctions lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/playershops.mdx b/src/content/docs/enhancements/Plugins/Free/playershops.mdx index 09a541ced7..0af729ee03 100644 --- a/src/content/docs/enhancements/Plugins/Free/playershops.mdx +++ b/src/content/docs/enhancements/Plugins/Free/playershops.mdx @@ -4,7 +4,7 @@ slug: e/pl/playershops title: PlayerShops (BSP) lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/powerranks.mdx b/src/content/docs/enhancements/Plugins/Free/powerranks.mdx index ad9c5954bc..bfa3ff52d4 100644 --- a/src/content/docs/enhancements/Plugins/Free/powerranks.mdx +++ b/src/content/docs/enhancements/Plugins/Free/powerranks.mdx @@ -9,7 +9,7 @@ sidebar: variant: success --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/quickshop.mdx b/src/content/docs/enhancements/Plugins/Free/quickshop.mdx index 83d3ec627a..798c8f9307 100644 --- a/src/content/docs/enhancements/Plugins/Free/quickshop.mdx +++ b/src/content/docs/enhancements/Plugins/Free/quickshop.mdx @@ -5,7 +5,7 @@ title: Quick Shop Remake lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/ultimatetimber.mdx b/src/content/docs/enhancements/Plugins/Free/ultimatetimber.mdx index ad99d7f5df..5a8d44abcd 100644 --- a/src/content/docs/enhancements/Plugins/Free/ultimatetimber.mdx +++ b/src/content/docs/enhancements/Plugins/Free/ultimatetimber.mdx @@ -5,7 +5,7 @@ title: Ultimate Timber lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/vault.mdx b/src/content/docs/enhancements/Plugins/Free/vault.mdx index 1fbcac14f7..a0159fd476 100644 --- a/src/content/docs/enhancements/Plugins/Free/vault.mdx +++ b/src/content/docs/enhancements/Plugins/Free/vault.mdx @@ -8,7 +8,7 @@ sidebar: text: Essential variant: success --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/worldedit.mdx b/src/content/docs/enhancements/Plugins/Free/worldedit.mdx index 4c658c4028..d2746c2a6d 100644 --- a/src/content/docs/enhancements/Plugins/Free/worldedit.mdx +++ b/src/content/docs/enhancements/Plugins/Free/worldedit.mdx @@ -9,7 +9,7 @@ sidebar: variant: success --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/worldguard.mdx b/src/content/docs/enhancements/Plugins/Free/worldguard.mdx index a5c2dce69e..463f364049 100644 --- a/src/content/docs/enhancements/Plugins/Free/worldguard.mdx +++ b/src/content/docs/enhancements/Plugins/Free/worldguard.mdx @@ -9,7 +9,7 @@ sidebar: variant: success --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Free/znpc.mdx b/src/content/docs/enhancements/Plugins/Free/znpc.mdx index 3f6120686f..0babf70d57 100644 --- a/src/content/docs/enhancements/Plugins/Free/znpc.mdx +++ b/src/content/docs/enhancements/Plugins/Free/znpc.mdx @@ -5,7 +5,7 @@ title: ZPNCs lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Premium/citizens.mdx b/src/content/docs/enhancements/Plugins/Premium/citizens.mdx index 3c2a38a706..51bfea8529 100644 --- a/src/content/docs/enhancements/Plugins/Premium/citizens.mdx +++ b/src/content/docs/enhancements/Plugins/Premium/citizens.mdx @@ -4,7 +4,7 @@ slug: e/pl/citizens title: Citizens lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Premium/litebans.mdx b/src/content/docs/enhancements/Plugins/Premium/litebans.mdx index cd805846ab..54f321c1b1 100644 --- a/src/content/docs/enhancements/Plugins/Premium/litebans.mdx +++ b/src/content/docs/enhancements/Plugins/Premium/litebans.mdx @@ -9,7 +9,7 @@ sidebar: variant: tip --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/enhancements/Plugins/Premium/zauctionhouse.mdx b/src/content/docs/enhancements/Plugins/Premium/zauctionhouse.mdx index 00910b7c18..867bfa1c65 100644 --- a/src/content/docs/enhancements/Plugins/Premium/zauctionhouse.mdx +++ b/src/content/docs/enhancements/Plugins/Premium/zauctionhouse.mdx @@ -4,7 +4,7 @@ slug: e/pl/zauctionhouse title: zAuctionHouse lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; #### This enhancement supports diff --git a/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx b/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx index ca7f2ca279..9c37ed8983 100644 --- a/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx +++ b/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx @@ -6,7 +6,7 @@ sidebar: order: 3 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; This section covers plugins that you can modify/replace to improve performance. Only recommended at higher player counts. @@ -39,6 +39,24 @@ Although TAB is already well-optimised, there are still some modifications you c --- +#### FancyHolograms (or other Hologram Plugins) +Ensure that your holograms are being refreshed at a reasonable interval. `updateTextInterval` in FancyHolograms is measured in ticks, so setting it to any value below `1000` will cause excessive load on the CPU. + +For Leaderboards, we recommend setting it to at least `30000`. For static holograms, `-1` will result in no updates. + +--- + +#### FancyGlow +If you happen to be using FancyGlow, make sure to disable it's TAB integration since it sends an obscene amount of packets. +Instead, use `%fancyglow_color%` within TAB's groups.yml in `tagprefix`. For example: +```yaml +_DEFAULT_: + tabprefix: "%luckperms-prefix%" + tagprefix: "%luckperms-prefix%%fancyglow_color%" +``` + +--- + #### ProtocolLib & it's Dependants ProtocolLib is not very well optimised. Lots of plugins also abuse ProtocolLib a lot, causing even worse performance. Examples are DeluxeCombat (If ProtocolLib hook is enabled) and InteractiveChat. Removal has resulted in significantly better performance in all large servers. diff --git a/src/content/docs/guides/Minecraft/Optimisation/basic.mdx b/src/content/docs/guides/Minecraft/Optimisation/basic.mdx index 45d322ac9b..0bc1cb388e 100644 --- a/src/content/docs/guides/Minecraft/Optimisation/basic.mdx +++ b/src/content/docs/guides/Minecraft/Optimisation/basic.mdx @@ -6,7 +6,7 @@ sidebar: order: 2 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue'; +import MainStatusPill from '@components/MainStatusPill.vue'; import { LinkCard, CardGrid } from '@astrojs/starlight/components'; Most servers will only ever need a basic degree of optimisation. Please note that certain optimisations can alter vanilla gameplay mechanics. diff --git a/src/content/docs/guides/Minecraft/Plugins/terra.mdx b/src/content/docs/guides/Minecraft/Plugins/terra.mdx index e20903f78d..afebf51d83 100644 --- a/src/content/docs/guides/Minecraft/Plugins/terra.mdx +++ b/src/content/docs/guides/Minecraft/Plugins/terra.mdx @@ -5,7 +5,7 @@ title: Terra World Generation lastUpdated: 2024-03-04 --- -import MainStatusPill from '../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; The setup.md wiki provides Terra worlds available for download monthly, the principle of this guide can be used in situations with / without our pre-provided files if you wish to generate things for yourself. diff --git a/src/content/docs/guides/Minecraft/Self-Host/Panels/Pterodactyl/Addons/index.mdx b/src/content/docs/guides/Minecraft/Self-Host/Panels/Pterodactyl/Addons/index.mdx index 230ec8ca49..6eea7b7c82 100644 --- a/src/content/docs/guides/Minecraft/Self-Host/Panels/Pterodactyl/Addons/index.mdx +++ b/src/content/docs/guides/Minecraft/Self-Host/Panels/Pterodactyl/Addons/index.mdx @@ -9,7 +9,7 @@ sidebar: variant: success lastUpdated: 2024-10-12 --- -import MainStatusPill from '../../../../../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; If you're looking to get more out of your Minecraft panel experience (and you're hosting the panel yourself) then you can look towards third party modifications in order to do this. diff --git a/src/content/docs/guides/Minecraft/sftp.mdx b/src/content/docs/guides/Minecraft/sftp.mdx index b8063c2ff6..1c6053e542 100644 --- a/src/content/docs/guides/Minecraft/sftp.mdx +++ b/src/content/docs/guides/Minecraft/sftp.mdx @@ -4,7 +4,7 @@ slug: guides/using-sftp title: Using SFTP lastUpdated: 2024-08-10 --- -import MainStatusPill from '../../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; If you're new to hosting a Minecraft server and you are looking to bring across a world file of your own or upload some plugins / mods to make your experience a little bit better, diff --git a/src/content/docs/hosting/panels.mdx b/src/content/docs/hosting/panels.mdx index c43aa1d4dd..65eea57d88 100644 --- a/src/content/docs/hosting/panels.mdx +++ b/src/content/docs/hosting/panels.mdx @@ -4,7 +4,7 @@ slug: h/ui title: Panels --- -import MainStatusPill from '../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; If you're running a Minecraft server the chances are you'll want an easier method of management, this is where panels come into play. Every [shared hosting](types#shared-hosting) provider will come with a control panel, this is how you'll interface with your server normally at a URL similar to https://panel.mydomain.com. Depending on how long the provider has been in business they'll either be using Multicraft or Pterodactyl (newer hosts using the latter). diff --git a/src/content/docs/hosting/tls.mdx b/src/content/docs/hosting/tls.mdx index 5111d1254a..787cf41a5b 100644 --- a/src/content/docs/hosting/tls.mdx +++ b/src/content/docs/hosting/tls.mdx @@ -6,7 +6,7 @@ title: TLS lastUpdated: 2024-01-01 --- -import MainStatusPill from '../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; If you're hosting more than just your Minecraft server, maybe you're using a Map service / forum / server store an SSL / TLS certificate is an absolute must. diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index c9cb4d677b..e80400034e 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -5,7 +5,7 @@ template: splash hero: tagline: Your home of good information written by enthusiasts for the novice Minecraft server owner. image: - file: ../../assets/houston.webp + file: '@assets/houston.webp' actions: - text: View the docs link: /docs diff --git a/src/content/docs/information/services.mdx b/src/content/docs/information/services.mdx index 7f972eb7b9..cf7d2100d8 100644 --- a/src/content/docs/information/services.mdx +++ b/src/content/docs/information/services.mdx @@ -7,7 +7,7 @@ sidebar: order: 2 --- -import MainStatusPill from '../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; As time has progressed we've continued to identify ways we can help server owners get up and running, setup.md has launched some additional services to help make your life easier. diff --git a/src/content/docs/jarapi.mdx b/src/content/docs/jarapi.mdx index b0b28d52b9..fb732304bc 100644 --- a/src/content/docs/jarapi.mdx +++ b/src/content/docs/jarapi.mdx @@ -6,7 +6,7 @@ slug: service/jar-api hero: tagline: An API to easily grab popular Minecraft server software. image: - file: ../../assets/javaicon.png + file: '@assets/javaicon.png' actions: - text: Source Code link: https://github.com/setupmd/server-jar-api @@ -14,5 +14,5 @@ hero: variant: primary --- -import MainStatusPill from '../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; diff --git a/src/content/docs/tools/server-software.mdx b/src/content/docs/tools/server-software.mdx index f3771b4c7d..cd66131ebe 100644 --- a/src/content/docs/tools/server-software.mdx +++ b/src/content/docs/tools/server-software.mdx @@ -5,7 +5,7 @@ title: Server Software lastUpdated: 2024-03-27 --- -import MainStatusPill from '../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; When creating a server there are multiple different names you will come across. Each server software has its own uses. diff --git a/src/content/docs/tools/signed-chat.mdx b/src/content/docs/tools/signed-chat.mdx index fd98649562..f5d095fe77 100644 --- a/src/content/docs/tools/signed-chat.mdx +++ b/src/content/docs/tools/signed-chat.mdx @@ -4,7 +4,7 @@ title: Signed Chat slug: t/signed-chat --- -import MainStatusPill from '../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard } from '@astrojs/starlight/components'; First things first, it's important to set the story straight. Mojang had always had a reporting toolset for anyone who wished to use it however with the introduction of 1.19.1 changes were made to this system that a reasonable portion of the community didn't like. diff --git a/src/content/docs/troubleshooting/connectivity.mdx b/src/content/docs/troubleshooting/connectivity.mdx index 5d70ee0ec1..c4b3443d76 100644 --- a/src/content/docs/troubleshooting/connectivity.mdx +++ b/src/content/docs/troubleshooting/connectivity.mdx @@ -5,7 +5,7 @@ title: Connectivity lastUpdated: 2023-12-16 --- -import MainStatusPill from '../../../components/MainStatusPill.vue' +import MainStatusPill from '@components/MainStatusPill.vue' import { LinkCard, CardGrid } from '@astrojs/starlight/components'; If you're having trouble connecting to your Minecraft server there's a process you should follow in order to try and understand where the issue lies. If you're running on a third party hosting provider it's recommended to reach out to them directly or check their status page. diff --git a/src/env.d.ts b/src/env.d.ts index acef35f175..c4ff85447f 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -1,2 +1,3 @@ /// +/// ///