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 ebf2828 commit e414a6bCopy full SHA for e414a6b
src/index.ts
@@ -199,7 +199,7 @@ export default defineNitroModule({
199
rollupConfig.output.chunkFileNames = (chunkInfo) => {
200
// GraphQL dosyalarını kontrol et
201
if (chunkInfo.moduleIds && chunkInfo.moduleIds.some(id =>
202
- id.includes('/graphql/') || id.includes('.graphql') || id.includes('.resolver.ts') || id.includes('.gql'),
+ id.endsWith('.graphql') || id.endsWith('.resolver.ts') || id.endsWith('.gql'),
203
)) {
204
return `chunks/graphql/[name].mjs`
205
}
0 commit comments