mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
22 lines
539 B
TypeScript
22 lines
539 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
css: ["~/assets/css/main.css"],
|
|
image: {
|
|
domains: ["www.themealdb.com"],
|
|
},
|
|
modules: ["@nuxt/eslint", "@nuxt/image", "nuxt-icon"],
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
runtimeConfig: {
|
|
// The private keys which are only available server-side
|
|
apiUrl: "",
|
|
// Keys within public are also exposed client-side
|
|
public: {},
|
|
},
|
|
ssr: true,
|
|
});
|