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: {
|
|
|
|
https: true,
|
|
|
|
proxy: {
|
|
|
|
// with options
|
|
|
|
'/lifeto': {
|
|
|
|
target: "https://beta.lifeto.co/",
|
|
|
|
changeOrigin: true,
|
|
|
|
rewrite: (path) => path.replace(/^\/lifeto/, ''),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2022-06-26 23:01:10 +00:00
|
|
|
})
|