Skip to content

Commit

Permalink
fix(core): handle events on blur (close #10212)
Browse files Browse the repository at this point in the history
  • Loading branch information
SK-Luffa committed Jul 6, 2024
1 parent 6fda717 commit 2e4ecf5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/bundler-vite/src/config/transformer/alias.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ describe('alias config transformer', () => {
test('no alias', () => {
expect(alias({}, {})).toEqual({
resolve: {
alias: [{ find: /^~/, replacement: '' }],
alias: [
{ find: /^~/, replacement: '' },
{ find: /react-helmet-async/, replacement: 'react-helmet-async' },
],
},
});
});
Expand Down

0 comments on commit 2e4ecf5

Please sign in to comment.