mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 10:43:27 +00:00
chore(dev): automatically open the browser when the server starts in vite (#2733)
## Description: automatically open the browser when the server starts in vite ## Please complete the following: - [X] I have added screenshots for all UI updates - [X] I process any text displayed to the user through translateText() and I've added it to the en.json file - [X] I have added relevant tests to the test directory - [X] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: wraith4081
This commit is contained in:
@@ -76,7 +76,7 @@ This will:
|
|||||||
|
|
||||||
- Start the webpack dev server for the client
|
- Start the webpack dev server for the client
|
||||||
- Launch the game server with development settings
|
- Launch the game server with development settings
|
||||||
- Open the game in your default browser
|
- Open the game in your default browser (to disable this behavior, set `SKIP_BROWSER_OPEN=true` in your environment)
|
||||||
|
|
||||||
### Client Only
|
### Client Only
|
||||||
|
|
||||||
|
|||||||
@@ -97,6 +97,8 @@ export default defineConfig(({ mode }) => {
|
|||||||
|
|
||||||
server: {
|
server: {
|
||||||
port: 9000,
|
port: 9000,
|
||||||
|
// Automatically open the browser when the server starts
|
||||||
|
open: process.env.SKIP_BROWSER_OPEN !== "true",
|
||||||
proxy: {
|
proxy: {
|
||||||
"/socket": {
|
"/socket": {
|
||||||
target: "ws://localhost:3000",
|
target: "ws://localhost:3000",
|
||||||
|
|||||||
Reference in New Issue
Block a user