Files
vercel__next.js/test/e2e/filesystem-cache/my-loader.js
Tobias Koppers f90a780d3e Turbopack: rename turbopackPersistentCachingForXXX to turbopackFileSystemCacheForXXX (#84632)
### What?

Improve naming of the feature: `Turbopack FileSystem Cache`
2025-10-08 16:32:05 +02:00

5 lines
158 B
JavaScript

module.exports = async function myLoader(source) {
console.log(`Run my-loader on ${this.resourcePath}`)
return source.replace(/Loader/g, 'hello world')
}