You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-11-25 22:32:52 +02:00
16
angular.webpack.js
Normal file
16
angular.webpack.js
Normal file
@@ -0,0 +1,16 @@
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires,no-undef
|
||||
const webpack = require('webpack');
|
||||
|
||||
/**
|
||||
* Custom angular webpack configuration
|
||||
*/
|
||||
module.exports = (config, options) => {
|
||||
config.plugins = [
|
||||
...config.plugins,
|
||||
new webpack.IgnorePlugin({
|
||||
resourceRegExp: /config\/private\/Config/,
|
||||
})
|
||||
];
|
||||
|
||||
return config;
|
||||
}
|
||||
Reference in New Issue
Block a user