rss-reader/vue/vite.config.js

36 lines
751 B
JavaScript

import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
proxy: {
'/login': {
target: 'http://localhost:8001/api/v1/auth',
changeOrigin: true,
secure: false,
// rewrite: (path) => path.replace(/^\/api/, ''),
},
'/feeds': {
target: 'http://localhost:8001/api/v1/article/get',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/feeds/, ''),
},
},
cors: false
},
})