L

Results 4 comments of L

I encountered the same problem, I built an electron application based on vite according to the documentation on the official website, and completed the steps required to integrate vue3 according...

@DiegoLibonati 's solution is helpful for the problem I'm facing; it just needs the following modifications to resolve it. ```js // src/main.js const { app, BrowserWindow } = require('electron'); const...

I also encountered the same problem. My electron-forge version is 7.6.1. After I packaged and ran the program, I got an error that better-sqlite3 could not be found. I checked...

The solutions mentioned by several previous commenters are effective. In vite.main.config.mjs ```js import { defineConfig } from 'vite'; // https://vitejs.dev/config export default defineConfig({}); ``` modify to ```js import { defineConfig...