lifeto-shop/vite.config.ts

18 lines
371 B
TypeScript
Raw Permalink Normal View History

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