Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in vite.md #167

Merged
merged 3 commits into from
May 14, 2024
Merged
Changes from 2 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
10 changes: 5 additions & 5 deletions config/plugins/vite.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ module.exports = {
"build": [
{
"entry": "src/main.js",
"config": "vite.main.config.mjs",
"config": "vite.main.config.mjs"
},
{
"entry": "src/preload.js",
"config": "vite.preload.config.mjs",
"config": "vite.preload.config.mjs"
},
Copy link

@c6z3h c6z3h Mar 31, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch on the JSON errors, should the comma on this line be removed as well? I'm getting an error on local with this Trailing comma json(519)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will be even better! done

],
"renderer": [
{
"name": "main_window",
"config": "vite.renderer.config.mjs",
}]
}
"config": "vite.renderer.config.mjs"
}
]
}
}
]
Expand Down