We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56dba80 commit 9a65cb6Copy full SHA for 9a65cb6
packages/vite-plugin-cloudflare-functions/src/vite/index.ts
@@ -47,7 +47,7 @@ export function CloudflarePagesFunctions(userConfig: UserConfig = {}): Plugin {
47
await killProcess();
48
});
49
50
- if (!userConfig.dts) {
+ if (typeof userConfig.dts !== 'boolean' && typeof userConfig.dts !== 'string') {
51
userConfig.dts = true;
52
}
53
0 commit comments