34 lines
723 B
TypeScript
34 lines
723 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
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" }],
|
|
},
|
|
},
|
|
|
|
modules: ["@nuxtjs/tailwindcss"],
|
|
css: ["@/assets/css/main.css"],
|
|
compatibilityDate: "2025-04-05",
|
|
|
|
components: {
|
|
dirs: [
|
|
"~/components",
|
|
"~/components/modal-content",
|
|
"~/components/forms",
|
|
"~/components/admin",
|
|
],
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
apiURL: process.env.API_URL || "http://localhost:8000/v1",
|
|
},
|
|
},
|
|
|
|
typescript: {
|
|
typeCheck: true,
|
|
},
|
|
});
|