1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-11-25 22:32:52 +02:00

moving supported formats to the config #561 #97

This commit is contained in:
Patrik J. Braun
2022-11-25 22:56:33 +01:00
parent e345da5e05
commit 11fffd4a5d
7 changed files with 99 additions and 32 deletions

16
angular.webpack.js Normal file
View 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;
}