-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
37 lines (37 loc) · 1.33 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
titleTemplate: '%s · Nuxt Starter',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'author', content: 'Site author' },
{ name: 'copyright', content: 'Site copyright' },
{ property: 'og:locale', content: 'en_US' },
{ property: 'og:type', content: 'website' },
{ property: 'og:image', content: '' }
],
link: [
{ rel: 'icon', href: 'favicon.ico' },
// { rel: 'stylesheet', href: '', crossorigin: '' }
],
// script: [
// { src: 'https://code.jquery.com/jquery-3.6.0.min.js', tagPosition: 'head' },
// { src: 'assets/js/supabase.js', tagPosition: 'bodyClose' },
// { src: 'assets/js/scripts.js', tagPosition: 'bodyClose' }
// ],
bodyAttrs: { class: '' }
}
},
css: [ 'assets/scss/styles.scss' ],
postcss: {
plugins: {
autoprefixer: {},
tailwindcss: {},
'tailwindcss/nesting': {}
}
},
srcDir: 'src/',
ssr: false
});