2022-09-09 22:46:53 +00:00
|
|
|
import { defineNuxtConfig } from "nuxt";
|
2022-09-01 22:32:03 +00:00
|
|
|
|
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
|
|
export default defineNuxtConfig({
|
2022-09-09 22:46:53 +00:00
|
|
|
target: "static",
|
2022-09-01 22:32:03 +00:00
|
|
|
ssr: false,
|
2022-09-09 22:46:53 +00:00
|
|
|
modules: ["@nuxtjs/tailwindcss", "@pinia/nuxt", "@vueuse/nuxt"],
|
2022-09-03 09:17:57 +00:00
|
|
|
meta: {
|
2022-09-09 22:46:53 +00:00
|
|
|
title: "Homebox",
|
|
|
|
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.svg" }],
|
2022-09-03 09:17:57 +00:00
|
|
|
},
|
2022-09-01 22:32:03 +00:00
|
|
|
vite: {
|
|
|
|
server: {
|
|
|
|
proxy: {
|
2022-09-09 22:46:53 +00:00
|
|
|
"/api": "http://localhost:7745",
|
2022-09-01 22:32:03 +00:00
|
|
|
},
|
|
|
|
},
|
2022-09-09 22:46:53 +00:00
|
|
|
plugins: [],
|
2022-09-01 22:32:03 +00:00
|
|
|
},
|
|
|
|
});
|