-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
35 lines (28 loc) · 763 Bytes
/
Copy pathnuxt.config.ts
File metadata and controls
35 lines (28 loc) · 763 Bytes
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: ['@nuxt/eslint', '@nuxt/ui', '@nuxt/image',],
devtools: {
enabled: true,
},
app: {
head: {
title: 'Iman Mohammadi — Portfolio',
meta: [{ name: 'description', content: 'Iman Mohammadi is a creative front-end developer and UI designer with a passion for creating beautiful and functional web applications.', },],
},
},
css: ['~/assets/css/main.css',],
build: {
transpile: ['three', 'gsap', 'animejs',],
},
routeRules: {
'/': { prerender: true, },
},
compatibilityDate: '2025-01-15',
eslint: {
config: {
stylistic: {
commaDangle: 'always', braceStyle: '1tbs',
},
},
},
},)