diff --git a/netlify.toml b/netlify.toml index 70f1c62c19..ccfcc34344 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,4 +1,4 @@ [dev] command = "vite --force" # This starts your Vite server -targetPort = 8888 # Vite server should run on this port -port = 3000 # Netlify Dev will proxy this port +targetPort = 3000 # Vite server should run on this port +port = 8888 # Netlify Dev will proxy this port diff --git a/vite.config.mts b/vite.config.mts index 9c1140b8a8..a7fbee6f80 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -7,7 +7,7 @@ import packageJson from './package.json'; export default defineConfig({ plugins: [react(), checker({ typescript: true })], server: { - port: 8888, + port: 3000, }, build: { sourcemap: true,