добился какой то работы с API
This commit is contained in:
@@ -1,16 +1,25 @@
|
||||
import react from "@vitejs/plugin-react-swc";
|
||||
import path from "path";
|
||||
import { defineConfig } from "vite";
|
||||
import react from '@vitejs/plugin-react-swc'
|
||||
import path from 'path'
|
||||
import { defineConfig } from 'vite'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": path.resolve("src"),
|
||||
"@widgets": path.resolve("src/widgets"),
|
||||
"@features": path.resolve("src/features"),
|
||||
"@entities": path.resolve("src/entities"),
|
||||
'@': path.resolve('src'),
|
||||
'@widgets': path.resolve('src/widgets'),
|
||||
'@features': path.resolve('src/features'),
|
||||
'@entities': path.resolve('src/entities'),
|
||||
},
|
||||
},
|
||||
});
|
||||
server: {
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: 'http://localhost:8000',
|
||||
changeOrigin: true,
|
||||
rewrite: path => path.replace(/^\/api/, ''),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user