- Deprecate use of build.json - *.bundle.js files placed anywhere in the public folder are bundled - Built files are created in public/build folder which is gitignored WIP
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
module.exports = {
|
|
name: "frappe-ignore-asset",
|
|
setup(build) {
|
|
build.onResolve({ filter: /^\/assets\// }, args => {
|
|
return {
|
|
path: args.path,
|
|
external: true
|
|
};
|
|
});
|
|
}
|
|
};
|