You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to know the context of the import to know if I need to replace or not the file.
My project is an multitenant and I want to be able to replace file from core with files for a particular tenant ( that I can achive ). Because we are using Vue we can also use "extend" and I want the tenant file to extent core file. And that is something that I cannot achive because I don't know the context.
Or maybe you know another webpack feature that can achive this.
The text was updated successfully, but these errors were encountered:
Hi, @ionutt !
I published a new release that including new replacement function API.
Please, update file-replace-loader and check it out!
Example:
const{ resolve }=require('path');module.exports={//...module: {rules: [{test: /\.js$/,loader: 'file-replace-loader',options: {condition: 'always',replacement(resourcePath,options){constcontext=options.context;// <-- The context is available since 1.4.0},async: true,}}]}}
Is there a way to know the context of the import to know if I need to replace or not the file.
My project is an multitenant and I want to be able to replace file from core with files for a particular tenant ( that I can achive ). Because we are using Vue we can also use "extend" and I want the tenant file to extent core file. And that is something that I cannot achive because I don't know the context.
Or maybe you know another webpack feature that can achive this.
The text was updated successfully, but these errors were encountered: