-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
80 lines (78 loc) · 1.66 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import messages from "./src/messages";
const routerBase = process.env.ROUTER_BASE || "/";
export default {
srcDir: "src/",
target: "static", // default is 'server'
generate: {
fallback: true,
},
head: {
titleTemplate: "Earth Defenders Toolkit",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "Meta description" },
],
},
publicRuntimeConfig: {
trainingMode: process.env.TRAINING,
},
env: {
edtHost: process.env.EDT_HOST,
},
modules: ["@nuxt/content", "@nuxtjs/i18n", "@nuxtjs/axios", "nuxt-clipboard"],
i18n: {
strategy: "prefix",
locales: [
{
code: "en",
name: "English",
iso: "en-US",
},
{
code: "es",
name: "Español",
iso: "es-AR",
},
{
code: "pt",
name: "Português",
iso: "pt-BR",
},
],
defaultLocale: process.env.LOCALE || "en",
vueI18n: {
fallbackLocale: {
es: ["pt"],
pt: ["es"],
default: ["en"],
},
messages,
},
detectBrowserLanguage: {
useCookie: true,
cookieKey: "i18n_redirected",
redirectOn: "all", // not recommended
},
},
buildModules: [
// https://go.nuxtjs.dev/eslint
"@nuxtjs/eslint-module",
// https://go.nuxtjs.dev/stylelint
"@nuxtjs/stylelint-module",
"nuxt-windicss",
"@nuxtjs/pwa",
"@nuxtjs/localforage",
"@nuxtjs/svg",
],
components: true,
build: {
extend(config, ctx) {},
},
router: {
base: routerBase,
},
server: {
host: "0.0.0.0",
},
};