mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: adding pycache to gitignore
This commit is contained in:
parent
1db5a9c295
commit
fc6cd710ac
15 changed files with 1084 additions and 1319 deletions
|
@ -4,6 +4,7 @@ import {
|
|||
loadEnv,
|
||||
swcPlugin,
|
||||
externalizeDepsPlugin,
|
||||
bytecodePlugin,
|
||||
} from "electron-vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
|
||||
|
@ -25,7 +26,7 @@ export default defineConfig(({ command, mode }) => {
|
|||
"@locales": resolve("src/locales"),
|
||||
},
|
||||
},
|
||||
plugins: [externalizeDepsPlugin(), swcPlugin()],
|
||||
plugins: [externalizeDepsPlugin(), swcPlugin(), bytecodePlugin()],
|
||||
},
|
||||
preload: {
|
||||
plugins: [externalizeDepsPlugin()],
|
||||
|
@ -37,7 +38,7 @@ export default defineConfig(({ command, mode }) => {
|
|||
"@locales": resolve("src/locales"),
|
||||
},
|
||||
},
|
||||
plugins: [svgr(), react(), vanillaExtractPlugin()],
|
||||
plugins: [svgr(), react(), vanillaExtractPlugin(), bytecodePlugin()],
|
||||
},
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue