mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
|
import { defineNuxtConfig } from 'nuxt';
|
||
|
|
||
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
||
|
export default defineNuxtConfig({
|
||
|
ssr: false,
|
||
|
modules: ['@nuxtjs/tailwindcss', '@pinia/nuxt', '@vueuse/nuxt'],
|
||
|
vite: {
|
||
|
server: {
|
||
|
proxy: {
|
||
|
'/api': 'http://localhost:7745',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|