Skip to content

Commit

Permalink
dev(): add deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
joranquinten committed Mar 22, 2021
1 parent 5e4b8a7 commit 1f72d42
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_modules
coverage

# local env files
.env
.env.local
.env.*.local

Expand Down
12 changes: 12 additions & 0 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@ module.exports = {
pluginOptions: {
electronBuilder: {
builderOptions: {
appId: "com.electron.webcolortool",
productName: "WebColorTool",
win: {
target: [
{
target: "msi",
arch: ["x64", "ia32"]
},
{
target: "portable",
arch: ["x64", "ia32"]
}
],
icon: "./public/favicon.ico"
}
}
Expand Down

0 comments on commit 1f72d42

Please sign in to comment.