(code, chunk, opts)
| 246 | ...(config.command === 'build' |
| 247 | ? { |
| 248 | renderChunk(code, chunk, opts) { |
| 249 | const s = renderAssetUrlInJS(this, chunk, opts, code) |
| 250 | |
| 251 | if (s) { |
| 252 | return { |
| 253 | code: s.toString(), |
| 254 | map: this.environment.config.build.sourcemap |
| 255 | ? s.generateMap({ hires: 'boundary' }) |
| 256 | : null, |
| 257 | } |
| 258 | } else { |
| 259 | return null |
| 260 | } |
| 261 | }, |
| 262 | } |
| 263 | : {}), |
| 264 |
nothing calls this directly
no test coverage detected