2022-06-26 23:01:10 +00:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2024-08-05 21:08:21 +00:00
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
2022-06-26 23:01:10 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2024-08-05 21:08:21 +00:00
|
|
|
plugins: [react()],
|
2022-07-01 01:27:18 +00:00
|
|
|
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
|
|
|
})
|
2024-08-05 21:08:21 +00:00
|
|
|
|
|
|
|
// 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/, ''),
|
|
|
|
// },
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//})
|