Skip to content

Commit

Permalink
Full Codebase Update
Browse files Browse the repository at this point in the history
"Why bother with multiple commits when you can push the entire project with just one? Laziness is a virtue, my friends, and I'm taking it to the next level with this commit. No need to worry about detailed commit messages or carefully selected changes - I'm throwing caution to the wind and pushing everything at once. Who needs Git history anyway? It's overrated. So sit back, relax, and enjoy the one commit to rule them all!"
  • Loading branch information
algj committed Apr 12, 2023
1 parent 7e4b96a commit b54625c
Show file tree
Hide file tree
Showing 39 changed files with 49,311 additions and 0 deletions.
18 changes: 18 additions & 0 deletions config-overrides.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = function override(config, env) {
// Remove the existing instance of HtmlWebpackPlugin from config.plugins
config.plugins = config.plugins.filter(
plugin => !(plugin instanceof HtmlWebpackPlugin)
);

// Add HtmlWebpackPlugin with your desired configuration
config.plugins.push(
new HtmlWebpackPlugin({
template: './public/index.html',
...require('./src/Config.js')
})
);

return config;
}
Loading

0 comments on commit b54625c

Please sign in to comment.