所以我在Electron / VUE应用程序中收到错误“不允许加载本地资源”。我认为错误来自我的index.ejs文件,我有
<style>
.background{
background: url('file:///images-benjamin-child-17946.jpg') no repeat center center fixed;
background-size cover;
}
</style>
图片benjamin-child位于images文件夹中,该文件夹应该有类似于:electronApp / app / images
的路径安装/运行应用程序非常简单,您只需按照README.md即可。
答案 0 :(得分:0)
我看了那个回购,在这种情况下,如果你只是将图像文件复制到dist目录并使用
background: url('/benjamin-child-17946.jpg') no-repeat center center fixed;
它应该有用。据推测,有一个webpack设置可以将文件从应用程序中的static
目录复制到dist
。