Skip to content

Commit

Permalink
Merge pull request #13 from jlsuh/develop
Browse files Browse the repository at this point in the history
Stuff
  • Loading branch information
jlsuh authored Feb 3, 2024
2 parents 8004ebf + 3780b15 commit 0dc7376
Show file tree
Hide file tree
Showing 3 changed files with 285 additions and 747 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jsdom": "^24.0.0",
Expand Down
15 changes: 15 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,19 @@ import { defineConfig } from "vite";

export default defineConfig({
plugins: [react()],
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (id.indexOf("node_modules") !== -1) {
return id
.toString()
.split("node_modules/")[1]
.split("/")[0]
.toString();
}
},
},
},
},
});
Loading

0 comments on commit 0dc7376

Please sign in to comment.