From b1c2ec5868b0cbbf4c74d93a1c5d7a05f95ae125 Mon Sep 17 00:00:00 2001 From: GweesinChan Date: Thu, 25 Jul 2024 13:47:46 +0800 Subject: [PATCH] fix: fix typos --- vite.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index a3e1ed86..acd55542 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -32,7 +32,7 @@ export default defineConfig(({ command }) => { minify: isBuild, outDir: 'dist-electron/main', rollupOptions: { - // Some third-party Node.js libraries may not be built correctly by Vite, especially `C/C++` addons, + // Some third-party Node.js libraries may not be built correctly by Vite, especially `C/C++` addons, // we can use `external` to exclude them to ensure they work correctly. // Others need to put them in `dependencies` to ensure they are collected into `app.asar` after the app is built. // Of course, this is not absolute, just this way is relatively simple. :) @@ -56,8 +56,8 @@ export default defineConfig(({ command }) => { }, }, }, - // Ployfill the Electron and Node.js API for Renderer process. - // If you want use Node.js in Renderer process, the `nodeIntegration` needs to be enabled in the Main process. + // Polyfill the Electron and Node.js API for Renderer process. + // If you want to use Node.js in Renderer process, the `nodeIntegration` needs to be enabled in the Main process. // See 👉 https://github.com/electron-vite/vite-plugin-electron-renderer renderer: {}, }),