Skip to content

Commit

Permalink
fix: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
JellyBrick authored Nov 7, 2023
1 parent 932cee6 commit 1a9d39d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions electron.vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import builtinModules from 'builtin-modules';
import type { UserConfig } from 'vite';

export default defineConfig({
main: defineViteConfig(({ command, mode }) => {
main: defineViteConfig(({ mode }) => {
const commonConfig: UserConfig = {
publicDir: 'assets',
build: {
Expand Down Expand Up @@ -36,7 +36,7 @@ export default defineConfig({
},
};
}),
preload: defineViteConfig(({ command, mode }) => {
preload: defineViteConfig(({ mode }) => {
const commonConfig: UserConfig = {
build: {
lib: {
Expand Down Expand Up @@ -67,7 +67,7 @@ export default defineConfig({
},
};
}),
renderer: defineViteConfig(({ command, mode }) => {
renderer: defineViteConfig(({ mode }) => {
const commonConfig: UserConfig = {
root: './src/',
build: {
Expand Down

0 comments on commit 1a9d39d

Please sign in to comment.