Skip to content

Commit

Permalink
Fix: Ignore manifest_*.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Nov 6, 2023
1 parent 694d553 commit d2a95e1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ module.exports = (env: Env, argv: Argv): Configuration => {
noErrorOnMissing: true,
globOptions: {
ignore: ["chrome", "firefox"].map((browser) => {
const ignoreFile = path.posix.join(__dirname, `public/manifest_${browser}.json`);
//console.log(ignoreFile);
return ignoreFile;
return `**/manifest_${browser}.json`;
}),
},
},
Expand Down

0 comments on commit d2a95e1

Please sign in to comment.