-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
64 lines (58 loc) · 1.9 KB
/
nuxt.config.ts
File metadata and controls
64 lines (58 loc) · 1.9 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// https://nuxt.com/docs/api/configuration/nuxt-config
import { defineNuxtConfig } from "nuxt/config";
export default defineNuxtConfig({
devtools: { enabled: true },
modules: ["@nuxtjs/tailwindcss", "@vueuse/nuxt", "@nuxtjs/robots", "@nuxtjs/sitemap", "nuxt-schema-org", "@nuxt/eslint"],
site: {
url: "https://mockbukkit.org",
name: "Mockbukkit",
},
schemaOrg: {
identity: {
type: "Organization",
name: "Mockbukkit",
url: "https://mockbukkit.org",
logo: "https://raw.githubusercontent.com/MockBukkit/MockBukkit/v1.21/logo.png",
sameAs: ["https://github.com/MockBukkit"],
},
},
app: {
head: {
htmlAttrs: {
lang: "en",
},
link: [
{
rel: "icon",
type: "image/x-icon",
href: "favicon.ico",
},
{
rel: "canonical",
href: "https://mockbukkit.org",
},
],
title: "MockBukkit | Comprehensive Unit Testing for Minecraft Plugins",
meta: [
{
name: "description",
content:
"MockBukkit is a framework for unit testing Bukkit plugins, offering versatile mock implementations for easy and effective automated plugin testing tools.",
},
],
},
},
css: ["@fortawesome/fontawesome-svg-core/styles.css", "~/assets/css/main.css"],
build: {
transpile: [
"@fortawesome/fontawesome-svg-core",
"@fortawesome/vue-fontawesome",
"@fortawesome/free-brands-svg-icons",
"@fortawesome/free-solid-svg-icons",
],
},
robots: {
allow: ["/"],
},
compatibilityDate: "2024-07-27",
});