movie-night-web/src/nuxt.config.ts

35 lines
723 B
TypeScript
Raw Normal View History

2025-03-30 20:51:11 -05:00
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
2025-04-06 15:42:36 -05:00
app: {
head: {
charset: "utf-8",
viewport: "width=device-width,initial-scale=1.0",
title: "Cinema Corona",
link: [{ rel: "icon", type: "image/png", href: "/favicon.png" }],
2025-03-30 20:51:11 -05:00
},
2025-04-06 15:42:36 -05:00
},
modules: ["@nuxtjs/tailwindcss"],
css: ["@/assets/css/main.css"],
compatibilityDate: "2025-04-05",
components: {
dirs: [
"~/components",
"~/components/modal-content",
"~/components/forms",
"~/components/admin",
],
},
runtimeConfig: {
public: {
2025-05-29 13:55:55 -05:00
apiURL: process.env.API_URL || "http://localhost:8000/v1",
2025-03-30 20:51:11 -05:00
},
2025-04-06 15:42:36 -05:00
},
typescript: {
typeCheck: true,
},
});