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