1
0
forked from a/lifeto-shop
lifeto-shop/vite.config.ts
2022-07-08 00:20:57 -05:00

18 lines
371 B
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
// with options
'/lifeto': {
target: "https://beta.lifeto.co/",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/lifeto/, ''),
},
}
}
})