[READ-ONLY] Mirror of https://github.com/danielroe/web-dev-challenge.
quickrecipes.co
405 B
22 lines
1// https://nuxt.com/docs/api/configuration/nuxt-config
2export default defineNuxtConfig({
3 modules: ['@nuxt/eslint'],
4 ssr: false,
5 devtools: { enabled: true },
6
7 runtimeConfig: {
8 anthropicApiKey: '',
9 spoonacularApiKey: '',
10 unsplash: {
11 accessKey: '',
12 secretKey: '',
13 },
14 },
15 compatibilityDate: '2024-11-01',
16
17 eslint: {
18 config: {
19 stylistic: true,
20 },
21 },
22})