mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
f90a780d3e
### What? Improve naming of the feature: `Turbopack FileSystem Cache`
5 lines
158 B
JavaScript
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')
|
|
}
|