-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
30 lines (29 loc) · 1.51 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
modules: ['@nuxtjs/tailwindcss','nuxt-icon','@nuxtjs/supabase', '@vueuse/nuxt'],
build: {
//transpile: ['alpinejs']
},
components: {
dirs: [
'~/components',
]
},
app: {
head: {
title: "Testar: Create tests and quizzes.",
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no' },
{ name: 'description', content: 'Testar is an app for creating and publishing online tests and quizzes. With its user-friendly dashboard, professionals and hobbyists can quickly create engaging tests to assess knowledge and understanding. Testar makes it easy to share tests with others through a link, allowing them to participate and take the test. It\'s an excellent solution for anyone in need of a reliable and efficient way to create and administer online tests and quizzes.' },
{ name: 'og:image', content: 'https://firebasestorage.googleapis.com/v0/b/learn-c73c3.appspot.com/o/Misc%2Ftester_social.png?alt=media&token=b2d6e5f6-f908-4501-beff-c3206e3036b4' },
{ name: 'theme-color', content: '#138aa5' },
{ name: 'google-site-verification', content: '_vFj4hTmFULy15VgJ6YwoXFCqRJy-rcggvFXPPH_8lg' }
],
script: [
{src: 'https://unpkg.com/alpinejs@3.10.5/dist/cdn.min.js', defer: true},
{src: 'https://cdn.jsdelivr.net/npm/clipboard@2.0.10/dist/clipboard.min.js', defer: true}
]
},
}
})