Configuration
To set up your website, you'll need to configure a couple of key files.
Website Details
Edit the app.config.ts
file to fill in the essential details about your website, such as the site title and description.
export default defineAppConfig({
serverName: 'Your Minecraft Server',
description: '',
...
});
Optional: Primary Color Customization
If desired, you can customize the primary color by updating the tailwind.config.js
file. This step is optional and can be adjusted later.
...
colors: {
primary: colors.red,
},
...
Once you've made your changes, save the files. Your configurations will take effect the next time you run your development server or deploy the site.
If you need to set up the PHP API for the Voting Leaderboard, please refer to the Voting Leaderboard Setup Guide.