(source)
| 149 | }, |
| 150 | |
| 151 | resolveId(source) { |
| 152 | if (source.startsWith(filePrefix)) { |
| 153 | const originalFilePath = source.replace(filePrefix, ''); |
| 154 | const configPath = createResolver(nitro.options.rootDir).resolve(`/${originalFilePath}`); |
| 155 | |
| 156 | return { id: configPath }; |
| 157 | } |
| 158 | return null; |
| 159 | }, |
| 160 | }; |
| 161 | } |
| 162 |
nothing calls this directly
no test coverage detected