Last active
September 25, 2021 11:25
-
-
Save kamiazya/77857007cc62e0192fc78701e1d62304 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Even if you use a query, it will be imported. | |
import './fixture.query.ts?1'; | |
// If the query is different, it will be loaded. | |
import './fixture.query.ts?2'; | |
// If the query is the same, the cached result will be used. | |
import './fixture.query.ts?2'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(new URL(import.meta.url).search.slice(1)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment