mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-26 10:35:40 +00:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
import { defineNuxtConfig } from "nuxt/config";
|
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
export default defineNuxtConfig({
|
|
ssr: false,
|
|
modules: ["@nuxtjs/tailwindcss", "@pinia/nuxt", "@vueuse/nuxt"],
|
|
nitro: {
|
|
devProxy: {
|
|
"/api": {
|
|
target: "http://localhost:7745/api",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
css: ["@/assets/css/main.css"],
|
|
});
|