We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8b578 commit 0a3e4beCopy full SHA for 0a3e4be
docs/guide/configuration.md
@@ -123,7 +123,9 @@ module.exports = {
123
pluginOptions: {
124
electronBuilder: {
125
customFileProtocol: 'myCustomProtocol://./' // Make sure to add "./" to the end of the protocol
126
- customFileProtocol: 'file://./' // You can also revert back to the file protocol with 'file://'
+ // If you want to use the file:// protocol, add win.loadURL(`file://${__dirname}/index.html`) to your main process file
127
+ // In place of win.loadURL('app://./index.html'), and set customFileProtocol to './'
128
+ customFileProtocol: './'
129
}
130
131
0 commit comments