knowyt/client/nuxt.config.ts

12 lines
214 B
TypeScript
Raw Normal View History

import { defineNuxtConfig } from 'nuxt'
export default defineNuxtConfig({
ssr: false,
srcDir: 'src/',
target: 'static',
2022-07-26 20:25:30 +00:00
modules: ['@nuxtjs/proxy'],
proxy: {
'/api/': 'http://localhost:32039',
}
})