Add new logos (#463)

* Add new logos

* fixup! Add new logos

* fixup! fixup! Add new logos

* Setup login screen

* fixup! Setup login screen
This commit is contained in:
Chris 2025-11-02 00:18:40 +02:00 committed by GitHub
parent 5b4a63b035
commit 26a0024207
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 298 additions and 147 deletions

View file

@ -2,6 +2,7 @@ const path = require('path');
const webpack = require('webpack');
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const isDevelopment = process.env.NODE_ENV !== 'production';
@ -67,6 +68,17 @@ module.exports = {
filename: 'index.html',
template: 'public/index.html'
}),
new CopyWebpackPlugin({
patterns: [
{
from: 'public',
to: '',
globOptions: {
ignore: ['**/index.html'],
},
},
],
}),
].filter(Boolean),
module: {
rules: [