exam11/vue.config.js
2025-08-26 22:26:52 +08:00

12 lines
293 B
JavaScript

module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: false,
contextIsolation: true,
preload: 'src/preload.js',
// If you want to use ESLint for your preload script,
// set lintPreloadFiles to true
lintPreloadFiles: false
}
}
}