-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
65 lines (59 loc) · 1.63 KB
/
nuxt.config.ts
File metadata and controls
65 lines (59 loc) · 1.63 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
65
export default defineNuxtConfig({
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width,initial-scale=1.0',
title: '대학생 인공지능 동아리 프로메테우스',
meta: [
{ hid: 'og:image', property: 'og:image', content: "https://prometheus-ai.net/_nuxt/prometheus.f62993c9.jpg" },
],
link: [
{
rel: 'stylesheet',
type: 'text/css',
href:
'https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap'
},
{
rel: 'stylesheet',
type: 'text/css',
href:
'https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.1.0/github-markdown-light.min.css'
}
]
},
},
css: [
'@fortawesome/fontawesome-svg-core/styles.css',
'@/assets/css/main.css',
'vue-slick-carousel/dist/vue-slick-carousel.css'
],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
build: {
transpile: [
'@fortawesome/fontawesome-svg-core',
'@fortawesome/free-brands-svg-icons',
'@fortawesome/free-regular-svg-icons',
'@fortawesome/free-solid-svg-icons',
'@fortawesome/vue-fontawesome'
]
},
modules: [
'@nuxtjs/tailwindcss',
'@pinia/nuxt',
],
runtimeConfig: {
// Public keys (exposed to client-side)
public: {
apiBaseUrl: process.env.API_BASE_URL || 'http://localhost:8000/api/v1',
googleClientId: process.env.GOOGLE_CLIENT_ID || '',
frontUrl: process.env.FRONT_URL || 'http://localhost:3000',
}
},
compatibilityDate: '2025-01-16',
});