-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.js
44 lines (44 loc) · 1019 Bytes
/
nuxt.config.js
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
export default {
server: {
port: 3000,
host: `0.0.0.0`,
},
components: true,
buildModules: [
"@nuxt/typescript-build",
"@nuxtjs/vuetify",
"@nuxtjs/tailwindcss",
],
target: "static",
env: {
configUrl: process.env.CONFIG_URL || "http://localhost:3000/config.json",
},
head: {
title: "Critical Failure: Fumble Tables",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
hid: "FumbleCharts",
name: "Critical Fail: Fumble Charts",
content: "A website to troll your PCs and NPCs with critical failures.",
},
],
},
build: {
postcss: {
// Add plugin names as key and arguments as value
// Install them before as dependencies with npm or yarn
plugins: {
tailwindcss: {},
},
preset: {
// Change the postcss-preset-env settings
autoprefixer: {},
},
},
},
vuetify: {
theme: { dark: true },
},
};