We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9354d6 commit 9e51b15Copy full SHA for 9e51b15
src/pitcher.ts
@@ -101,11 +101,7 @@ function genProxyModule(
101
)
102
// return a proxy module which simply re-exports everything from the
103
// actual request.
104
- return (
105
- `import mod from ${request};` +
106
- `export default mod;` +
107
- `export * from ${request}`
108
- )
+ return `export { default } from ${request}; export * from ${request}`
109
}
110
111
function shouldIgnoreCustomBlock(loaders: Loader[]) {
0 commit comments