mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
58 lines
2 KiB
JavaScript
58 lines
2 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const BASE_URL_PLACEHOLDER = 'BASE_URL_PLACEHOLDER';
|
|
|
|
const replaceInFile = (file, search, replace) => {
|
|
fs.readFile(file, 'utf8', (readError, data) => {
|
|
if (readError) {
|
|
throw new Error(`${readError}`);
|
|
}
|
|
const res = data.replaceAll(search, replace);
|
|
fs.writeFile(file, res, 'utf8', (writeError) => {
|
|
if (writeError) {
|
|
throw new Error(`${writeError}`);
|
|
}
|
|
});
|
|
});
|
|
};
|
|
|
|
const replaceBaseUrl = (compiler) => {
|
|
compiler.hooks.assetEmitted.tap('ReplaceBaseUrlPlaceholder', (file, info) => {
|
|
if (info.content.indexOf(BASE_URL_PLACEHOLDER) >= 0) {
|
|
if (/\.css$/.exec(info.targetPath)) {
|
|
// For CSS 'url(...)' import we can use relative import
|
|
const relPath = path
|
|
.relative(path.dirname(info.targetPath), info.outputPath)
|
|
.replace(/\\/g, '/');
|
|
replaceInFile(info.targetPath, BASE_URL_PLACEHOLDER, `${relPath}/`);
|
|
} else if (/\.js$/.exec(info.targetPath)) {
|
|
// For JS 'import ... from "some-asset"' we can get the variable injected in the window object
|
|
// eslint-disable-next-line no-template-curly-in-string
|
|
replaceInFile(info.targetPath, `"${BASE_URL_PLACEHOLDER}"`, '`${window.BASE_URL}/`');
|
|
} else if (/index\.html$/.exec(info.targetPath)) {
|
|
// For the main html file, we set a placeholder for sails to inject the correct value as runtime
|
|
replaceInFile(info.targetPath, BASE_URL_PLACEHOLDER, '<%= BASE_URL %>');
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
module.exports = function override(config, env) {
|
|
if (env === 'production') {
|
|
const plugins = config.plugins.map((plugin) => {
|
|
if (plugin.constructor.name === 'InterpolateHtmlPlugin') {
|
|
const newPlugin = plugin;
|
|
newPlugin.replacements.PUBLIC_URL = BASE_URL_PLACEHOLDER;
|
|
return newPlugin;
|
|
}
|
|
return plugin;
|
|
});
|
|
return {
|
|
...config,
|
|
output: { ...config.output, publicPath: BASE_URL_PLACEHOLDER },
|
|
plugins: [...plugins, { apply: replaceBaseUrl }],
|
|
};
|
|
}
|
|
return config;
|
|
};
|