-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.config.ts
40 lines (40 loc) · 1.36 KB
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// https://nuxt.com/docs/guide/directory-structure/app-config
// See index.d.ts for the full list of available options
export default defineAppConfig({
// Shows in the <title> tag before the name of the page
titlePrefix: "Example Store",
// The name of your store
storeName: "Example Store",
// Require the user to login before they add items?
auth: true,
// Use external auth methods, e.g. CFX, Steam (Set to false for minecraft stores)
authExternal: true,
// The unique ID of the store
storeId: 45295,
// A link to your main site (optional)
mainSiteUrl: "https://example.com",
// A discord invite url (optional)
discordUrl: "https://discord.gg/example",
// A IP of your server which to display (optional)
serverIp: "play.example.com",
// Reveal the sidebar when an item is added to the cart?
showCartOnAdd: true,
// Show confetti after checkout?
confetti: true,
// Game type name to display on the store
gameTypeName: "Minecraft",
// Tebex.js settings see https://docs.tebex.io/developers/tebex.js/integration#config
tebexJsConfig: {
theme: "dark",
colors: [
{
name: "primary",
color: "#EB5526",
},
{
name: "secondary",
color: "#F5F5F5",
},
],
},
});