forked from EducloudHQ/community-day
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
90 lines (88 loc) · 2.02 KB
/
nuxt.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
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
81
82
83
84
85
86
87
88
89
90
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: true,
css: ["~/assets/css/main.css"],
vite: {
resolve: {
alias: {
"./runtimeConfig": "./runtimeConfig.browser",
},
},
server: {
fs: {
strict: false,
},
},
// temp-fix for dev, it breaks build for now (see: https://github.com/nuxt/framework/issues/4916)
define: {
"window.global": {},
},
},
app: {
head: {
script: [
{
src: "lib/jquery/jquery.min.js",
},
{
src: "lib/jquery/jquery-migrate.min.js",
},
{
src: "lib/bootstrap/js/bootstrap.bundle.min.js",
},
{
src: "lib/easing/easing.min.js",
},
{
src: "lib/superfish/hoverIntent.js",
},
{
src: "lib/superfish/superfish.min.js",
},
{
src: "lib/wow/wow.min.js",
},
{
src: "lib/venobox/venobox.min.js",
},
{
src: "lib/owlcarousel/owl.carousel.min.js",
},
{
src: "js/main.js",
},
],
link: [
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800",
},
{
rel: "stylesheet",
href: "lib/bootstrap/css/bootstrap.min.css",
},
{
rel: "stylesheet",
href: "lib/font-awesome/css/font-awesome.min.css",
},
{
rel: "stylesheet",
href: "lib/animate/animate.min.css",
},
{
rel: "stylesheet",
href: "lib/venobox/venobox.css",
},
{
rel: "stylesheet",
href: "lib/owlcarousel/assets/owl.carousel.min.css",
},
{
rel: "stylesheet",
href: "https://sessionize.com/api/v2/i3dm16ol/view/GridSmart",
},
],
},
},
});