2020-02-18 08:57:00 +01:00
|
|
|
|
const path = require("path");
|
2020-10-08 10:20:14 +02:00
|
|
|
|
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
|
2020-02-18 08:57:00 +01:00
|
|
|
|
|
2018-05-18 11:28:29 +02:00
|
|
|
|
module.exports = {
|
2018-07-04 14:29:17 +02:00
|
|
|
|
runtimeCompiler: true,
|
2020-08-14 11:32:23 +02:00
|
|
|
|
filenameHashing: true,
|
2020-10-13 20:39:59 +02:00
|
|
|
|
productionSourceMap: false,
|
2020-02-18 08:57:00 +01:00
|
|
|
|
outputDir: path.resolve(__dirname, "../priv/static"),
|
2020-10-08 10:20:14 +02:00
|
|
|
|
configureWebpack: (config) => {
|
|
|
|
|
// Limit the used memory when building
|
|
|
|
|
// Source : https://stackoverflow.com/a/55810460/10204399
|
|
|
|
|
// get a reference to the existing ForkTsCheckerWebpackPlugin
|
|
|
|
|
const existingForkTsChecker = config.plugins.filter(
|
|
|
|
|
(p) => p instanceof ForkTsCheckerWebpackPlugin
|
|
|
|
|
)[0];
|
|
|
|
|
|
|
|
|
|
// remove the existing ForkTsCheckerWebpackPlugin
|
|
|
|
|
// so that we can replace it with our modified version
|
2020-11-30 10:24:11 +01:00
|
|
|
|
config.plugins = config.plugins.filter(
|
|
|
|
|
(p) => !(p instanceof ForkTsCheckerWebpackPlugin)
|
|
|
|
|
);
|
2020-10-08 10:20:14 +02:00
|
|
|
|
|
|
|
|
|
// copy the options from the original ForkTsCheckerWebpackPlugin
|
|
|
|
|
// instance and add the memoryLimit property
|
|
|
|
|
const forkTsCheckerOptions = existingForkTsChecker.options;
|
|
|
|
|
forkTsCheckerOptions.memoryLimit = process.env.NODE_BUILD_MEMORY || 2048;
|
|
|
|
|
|
|
|
|
|
config.plugins.push(new ForkTsCheckerWebpackPlugin(forkTsCheckerOptions));
|
|
|
|
|
},
|
2020-10-13 20:39:59 +02:00
|
|
|
|
chainWebpack: (config) => {
|
|
|
|
|
// remove the prefetch plugin
|
|
|
|
|
config.plugins.delete("prefetch");
|
|
|
|
|
},
|
|
|
|
|
css: {
|
|
|
|
|
loaderOptions: {
|
|
|
|
|
scss: {
|
|
|
|
|
additionalData: `@import "@/variables.scss";`,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2018-05-18 11:28:29 +02:00
|
|
|
|
};
|