You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
'@nuxtjs/supabase',
|
|
'@nuxtjs/tailwindcss',
|
|
'nuxt-icon',
|
|
'@pinia/nuxt',
|
|
'@vueuse/nuxt',
|
|
'@nuxt/devtools',
|
|
],
|
|
app: {
|
|
pageTransition: false,
|
|
layoutTransition: false,
|
|
},
|
|
alias: {
|
|
'@logo': '/assets/logo',
|
|
'@assets': '/assets',
|
|
'@stores': '/stores',
|
|
},
|
|
tailwindcss: {
|
|
config: {
|
|
content: [],
|
|
important: false,
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#0c0c0d',
|
|
secondary: '#18181b',
|
|
darkgray: '#121213',
|
|
lightgray: '#27272a',
|
|
},
|
|
},
|
|
// uncomment when syntax highlight
|
|
// is enable for markdown (highlight.js)
|
|
// typography: {
|
|
// default: {
|
|
// css: {
|
|
// 'pre': null,
|
|
// 'code': null,
|
|
// 'code::before': null,
|
|
// 'code::after': null,
|
|
// 'pre code': null,
|
|
// 'pre code::before': null,
|
|
// 'pre code::after': null,
|
|
// },
|
|
// },
|
|
// },
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
},
|
|
},
|
|
typescript: {
|
|
strict: true,
|
|
},
|
|
supabase: {
|
|
url: process.env.SUPABASE_URL,
|
|
key: process.env.SUPABASE_KEY,
|
|
serviceKey: process.env.SUPABASE_SERVICE_KEY,
|
|
},
|
|
})
|