mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-21 16:42:28 +00:00
fix build error
This commit is contained in:
parent
a498fdde87
commit
e93cbe4d4a
1 changed files with 25 additions and 24 deletions
|
|
@ -121,9 +121,9 @@ export default defineConfig(({ mode }) => {
|
|||
],
|
||||
|
||||
build: {
|
||||
sourcemap: true,
|
||||
sourcemap: mode !== "production",
|
||||
rollupOptions: {
|
||||
output: {},
|
||||
output: {
|
||||
manualChunks(id: string) {
|
||||
if (id.includes("@sozialhelden+ietf-language-tags") || id.includes("country-language")) {
|
||||
return "language-db";
|
||||
|
|
@ -149,6 +149,7 @@ export default defineConfig(({ mode }) => {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
css: {
|
||||
postcss: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue