123456789101112131415161718192021222324252627 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- export default defineConfig({
- plugins: [vue()],
- server: {
- proxy: {
- '/api': {
- target: 'https://cinema.kolei.ru',
- changeOrigin: true,
- secure: false,
- rewrite: (path) => path.replace(/^\/api/, '/api'),
- configure: (proxy, _options) => {
- proxy.on('error', (err, _req, _res) => {
- console.log('proxy error', err);
- });
- proxy.on('proxyReq', (proxyReq, req, _res) => {
- console.log('Sending Request to the Target:', req.method, req.url);
- });
- proxy.on('proxyRes', (proxyRes, req, _res) => {
- console.log('Received Response from the Target:', proxyRes.statusCode, req.url);
- });
- },
- }
- }
- }
- })
|