156eba0551
Allow to exclude a member Send emails to the member when it's excluded Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
runtimeCompiler: true,
|
|
lintOnSave: true,
|
|
filenameHashing: true,
|
|
outputDir: path.resolve(__dirname, "../priv/static"),
|
|
configureWebpack: {
|
|
optimization: {
|
|
splitChunks: {
|
|
minSize: 10000,
|
|
maxSize: 250000,
|
|
},
|
|
},
|
|
},
|
|
};
|