Initial commit
This commit is contained in:
commit
50c4133930
35 changed files with 12673 additions and 0 deletions
28
src/nuxt.config.ts
Normal file
28
src/nuxt.config.ts
Normal file
|
@ -0,0 +1,28 @@
|
|||
// 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"],
|
||||
components: {
|
||||
dirs: [
|
||||
'~/components',
|
||||
'~/components/modal-content',
|
||||
'~/components/forms',
|
||||
'~/components/admin',
|
||||
]
|
||||
},
|
||||
runtimeConfig: {
|
||||
public: {
|
||||
apiURL: process.env.API_URL || "http://localhost:8000/api"
|
||||
}
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue