From e80ca746d810c8cec53b7c5ca474c1b00170a718 Mon Sep 17 00:00:00 2001 From: gigihpaga Date: Thu, 16 Mar 2023 20:25:31 +0700 Subject: [PATCH] =?UTF-8?q?change=20port=20develope=20server=20Vite=20?= =?UTF-8?q?=E2=9A=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vite.config.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/vite.config.js b/vite.config.js index 5a33944..9911118 100644 --- a/vite.config.js +++ b/vite.config.js @@ -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, + }, +});