Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf(resolve): skip for virtual files #12638

Merged
merged 2 commits into from Mar 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/vite/src/node/plugins/resolve.ts
Expand Up @@ -142,6 +142,15 @@ export function resolvePlugin(resolveOptions: InternalResolveOptions): Plugin {
name: 'vite:resolve',

async resolveId(id, importer, resolveOpts) {
if (
id[0] === '\0' ||
id.startsWith('virtual:') ||
// When injected directly in html/client code
id.startsWith('/virtual:')
) {
return
}

const ssr = resolveOpts?.ssr === true

// We need to delay depsOptimizer until here instead of passing it as an option
Expand Down