Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,13 @@ npm install cross-env
Then in your `package.json` scripts section:

```bash
"production": "cross-env NODE_ENV=production npm run build"
"build:win": "cross-env NODE_ENV=production npm run build",
```

And run:

```bash
npm run build:win
```

:::
Expand Down Expand Up @@ -131,7 +137,13 @@ npm install cross-env
Then in your `package.json` scripts section:

```bash
"production": "cross-env NODE_ENV=production npm start"
"start:win": "cross-env NODE_ENV=production npm start",
```

And run:

```bash
npm run start:win
```

:::
Expand Down