mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-20 15:16:42 +00:00
4e976f66f3
### Describe Your Changes ### Pull Request Description: 1. **HTML File Structure Optimization**: Adjusted the location of HTML files for different builds to prevent redundant files in the final output. See issue #6900 2. **Metadata Fixes**: Corrected metadata in HTML files for each build configuration. 3. **Favicon Update**: Replaced PNG favicon (`14 KB` and `1.58 KB`) with SVG (`1.35 KB`). 4. **Social Media Optimization**: Optimized the social preview image, reducing its size by `60.2 KB`. 5. **Git Ignore Update**: Added `public/index.html` to `.gitignore` as it is dynamically generated during the build process. ### Checklist The following checks are **mandatory**: - [x] My change adheres [VictoriaMetrics contributing guidelines](https://docs.victoriametrics.com/contributing/).
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/* eslint-disable */
|
|
const { override, addExternalBabelPlugin, addWebpackAlias, addWebpackPlugin } = require("customize-cra");
|
|
const webpack = require("webpack");
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
// This will replace the default check
|
|
const pathIndexHTML = (() => {
|
|
switch (process.env.REACT_APP_TYPE) {
|
|
case 'logs':
|
|
return 'src/html/victorialogs.html';
|
|
case 'anomaly':
|
|
return 'src/html/vmanomaly.html';
|
|
default:
|
|
return 'src/html/victoriametrics.html';
|
|
}
|
|
})();
|
|
const fileContent = fs.readFileSync(path.resolve(__dirname, pathIndexHTML), 'utf8');
|
|
fs.writeFileSync(path.resolve(__dirname, 'public/index.html'), fileContent);
|
|
|
|
module.exports = override(
|
|
addExternalBabelPlugin("@babel/plugin-proposal-nullish-coalescing-operator"),
|
|
addWebpackAlias({
|
|
"react": "preact/compat",
|
|
"react-dom/test-utils": "preact/test-utils",
|
|
"react-dom": "preact/compat", // Must be below test-utils
|
|
"react/jsx-runtime": "preact/jsx-runtime"
|
|
}),
|
|
addWebpackPlugin(
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
/\.\/App/,
|
|
function (resource) {
|
|
if (process.env.REACT_APP_TYPE === "logs") {
|
|
resource.request = "./AppLogs";
|
|
}
|
|
if (process.env.REACT_APP_TYPE === "anomaly") {
|
|
resource.request = "./AppAnomaly";
|
|
}
|
|
}
|
|
)
|
|
)
|
|
);
|