chore: добавить dist-node в .gitignore, убрать из отслеживания

Made-with: Cursor
This commit is contained in:
Anton
2026-03-10 11:54:31 +03:00
parent 56b5c81ec5
commit 20d2a2b497
3 changed files with 1 additions and 16 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
node_modules/
dist/
dist-node/
build/
.env

View File

@@ -1,2 +0,0 @@
declare const _default: import("vite").UserConfig;
export default _default;

View File

@@ -1,14 +0,0 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
});