Skip to content

Commit

Permalink
change port develope server Vite ⚙
Browse files Browse the repository at this point in the history
  • Loading branch information
gigihpaga committed Mar 16, 2023
1 parent c10a901 commit e80ca74
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions vite.config.js
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({
plugins: [react()],
})
plugins: [react()],
server: {
port: 3000,
},
});

0 comments on commit e80ca74

Please sign in to comment.