add first services
This commit is contained in:
17
vite.config.ts
Normal file
17
vite.config.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
import path from 'path';
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
root: 'src',
|
||||
build: {
|
||||
outDir: '../build',
|
||||
emptyOutDir: true,
|
||||
},
|
||||
server: {
|
||||
// Порт для сервера разработки
|
||||
port: 3050,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user