-
-
Notifications
You must be signed in to change notification settings - Fork 615
Closed
Description
- Rollup Plugin Name: node-resolve
- Rollup Plugin Version: any
Feature Use Case
In the browser it's common to use hashes or query params to pass along some state. Node resolve fails to solve imports with query params or hashes.
Feature Proposal
Resolve imports with query param or hashes. For example an import such as:
import foo from 'bar/bar.js?x=y';Should be resolved to:
import foo from '/node_modules/bar/bar.js?x=y';I can work on a PR for this we think this feature is valueable.
Reactions are currently unavailable