-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
46 lines (37 loc) · 1 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
import getHeadScripts from "./commons/head-scripts";
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
devtools: { enabled: true },
pages: true,
ssr: false,
devServer: {
port: 3002,
},
app: {
head: {
link: [
{
rel: "shortcut icon",
type: "image/x-icon",
href: "https://cdn.prod.website-files.com/67245aca623c6cfc8f245f78/673a615900a0d08adfb08e77_favicon.png",
},
{
rel: "apple-touch-icon",
href: "https://cdn.prod.website-files.com/67245aca623c6cfc8f245f78/673a611ed3b5194a44a2842f_ico.png",
},
],
script: [...getHeadScripts()],
},
},
css: [
"/public/assets/css/kam-caroselling.webflow.d19ad660d.css",
"/public/assets/css/main.css",
"/public/assets/css/custom.css",
],
components: ["~/components", "~/components/Home"],
plugins: ["~/plugins/lenis.ts"],
build: {
transpile: ["gsap"],
},
});