Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions protocol-designer/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ export default defineConfig(async (): Promise<UserConfig> => {
esbuildOptions: {
target: 'es2020',
},
// For unknown reasons, PD whitescreens on launch unless we have this.
include: ['tslib'],
},
css: {
postcss: {
Expand Down Expand Up @@ -143,6 +145,8 @@ export default defineConfig(async (): Promise<UserConfig> => {
},
resolve: {
conditions: ['browser'],
// For unknown reasons, PD whitescreens on launch unless we have this.
dedupe: ['tslib'],
alias: {
// todo(mm, 2025-10-27): These cross-project aliases cause trouble like
// files being processed with the wrong config (the config from the
Expand Down
Loading