electrion vue __dirname is a NodeJS variable

2021/7/25 14:06:06

本文主要是介绍electrion vue __dirname is a NodeJS variable,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

__dirname is a NodeJS variable, in recent electron versions, node integration is disabled by default. When opening your BrowserWindow, you should add the following to the options:



module.exports = {
    pluginOptions: {
        electronBuilder: {
            nodeIntegration: true
        }
    }
}

 


this seems to solve it for most people (for me sadly enough i now get the next error: fs.existsSync is not a function)



这篇关于electrion vue __dirname is a NodeJS variable的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程