Compare commits

..

2 commits

Author SHA1 Message Date
ac219039bd fix: white screen 2026-07-06 00:20:57 +01:00
43479715b1 fix: error? 2026-07-06 00:15:22 +01:00
2 changed files with 16 additions and 0 deletions

2
pnpm-workspace.yaml Normal file
View file

@ -0,0 +1,2 @@
allowBuilds:
esbuild: true

View file

@ -12,4 +12,18 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
build: {
rolldownOptions: {
output: {
codeSplitting: {
groups: [
{
name: "pixi",
test: /node_modules[\\/](pixi\.js|@pixi)[\\/]/,
},
],
},
},
},
},
});