(id)
| 173 | ], |
| 174 | }, |
| 175 | handler(id) { |
| 176 | if (!config.assetsInclude(cleanUrl(id)) && !urlRE.test(id)) { |
| 177 | return |
| 178 | } |
| 179 | // imports to absolute urls pointing to files in /public |
| 180 | // will fail to resolve in the main resolver. handle them here. |
| 181 | const publicFile = checkPublicFile(id, config) |
| 182 | if (publicFile) { |
| 183 | return id |
| 184 | } |
| 185 | }, |
| 186 | }, |
| 187 | |
| 188 | load: { |
nothing calls this directly
no test coverage detected