Format nuxt.config.ts
parent
8879b96c18
commit
52760dd2a8
@ -1,60 +1,61 @@
|
||||
// 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,
|
||||
},
|
||||
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,
|
||||
},
|
||||
ssr: false,
|
||||
})
|
||||
|
||||
Loading…
Reference in New Issue