Skip to content
This repository was archived by the owner on Nov 9, 2023. It is now read-only.

Commit 5862f33

Browse files
committed
fix(index): read proper plugin options
1 parent 6506649 commit 5862f33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = (api, options) => {
22
// If plugin options are provided in vue.config.js, those will be used. Otherwise it is empty object
33
const pluginOptions =
4-
options.pluginOptions && options.pluginOptions.electronBuilder
5-
? options.pluginOptions.electronBuilder
4+
options.pluginOptions && options.pluginOptions.tauri
5+
? options.pluginOptions.tauri
66
: {}
77

88
api.chainWebpack(cfg => {

0 commit comments

Comments
 (0)