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.

30 lines
545 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: ['@nuxtjs/supabase', '@nuxtjs/tailwindcss'],
alias: {
'@logo': '/assets/logo',
},
tailwindcss: {
config: {
content: [],
important: false,
theme: {
extend: {
colors: {
primary: '#0f0f0f',
secondary: '#1e1e1e',
},
},
},
},
},
typescript: {
strict: true,
},
supabase: {
url: process.env.SUPABASE_URL,
key: process.env.SUPABASE_KEY,
serviceKey: process.env.SUPABASE_SERVICE_KEY,
},
});