-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
37 lines (36 loc) · 910 Bytes
/
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
// https://nuxt.com/docs/api/configuration/nuxt-config
import portfolio from './images.json';
export default defineNuxtConfig({
runtimeConfig: {
public: {
siteUrl: process.env.NUXT_PUBLIC_SITE_URL || 'https://www.aydinhassanphotography.com',
galleryOrderSeed: Math.random(),
}
},
components: [
{ path: '~/components/icons', prefix: 'Icon' },
'~/components'
],
css: ['~/assets/style.css'],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
modules: [
'@nuxtjs/google-fonts',
'nuxt-simple-sitemap',
'@nuxtjs/robots',
//'@nuxtus/nuxt-localtunnel'
],
googleFonts: {
families: {
'Bungee+Hairline': {
wght: [400],
},
},
display: 'swap',
preload: true
}
})