Skip to content

Commit

Permalink
fix: exclude './server.js' from custom-elements test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Moore committed Feb 8, 2022
1 parent 2511328 commit e2f4ba4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default {
viteConfig() {
return {
optimizeDeps: {
include: ['@astrojs/test-custom-element-renderer/polyfill.js', '@astrojs/test-custom-element-renderer/hydration-polyfill.js']
include: ['@astrojs/test-custom-element-renderer/polyfill.js', '@astrojs/test-custom-element-renderer/hydration-polyfill.js'],
exclude: ['@astrojs/test-custom-element-renderer/server.js']
}
}
}
Expand Down

0 comments on commit e2f4ba4

Please sign in to comment.