我正在尝试使用
将exe构建到新目录中"electron-packager D:\Topu\codes\CHAT_SOC topu --platform=win32 --arch=x64"
但是我已经更改了目录,但我的exe总是在初始目录中生成。最重要的是,当我更改HTML时,应按照更新的HTML来构建exe,但不要使用新的HTML进行更新,而应该始终采用我先构建的第一个HTML。
N:B:我正在使用电子工具来构建桌面exe,后端是节点js,HTML,CSS。
谢谢。
我的代码:
const { app, BrowserWindow } = require("electron");
function createWindow() {
// Create the browser window.
win = new BrowserWindow({
width: 800,
height: 517,
webPreferences: {
nodeIntegration: true
}
});
// and load the index.html of the app.
win.loadFile("app.html");
// Emitted when the window is closed.
win.on("closed", () => {
win = null;
});
}
app.on("ready", createWindow);
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});
app.on("activate", () => {
if (win === null) {
createWindow();
}
});