Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zx8086 committed Jan 27, 2025
1 parent b663821 commit a47b17f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ export default defineConfig(({ mode }): UserConfig => {
"@elastic/ecs-winston-format",
"@opentelemetry/winston-transport",
]
: [])
: []),
'@apollo/client'
]
},
target: "esnext",
Expand All @@ -128,6 +129,12 @@ export default defineConfig(({ mode }): UserConfig => {
},
esbuild: {
target: "esnext",
charset: 'utf8',
tsconfigRaw: {
compilerOptions: {
preserveValueImports: true
}
}
},
css: {
postcss: true,
Expand Down

0 comments on commit a47b17f

Please sign in to comment.