Skip to content

Commit

Permalink
change port to 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim9999 committed Apr 23, 2024
1 parent fcbc38e commit 72acca7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
export default defineConfig({
server: {
port: 3000,
},
plugins: [react()],
})
});

0 comments on commit 72acca7

Please sign in to comment.