Implement DATEV export functionality in DataViewer and enhance TransactionsTable with selection features and improved row styling. Update environment variables and add devServer configuration in webpack for better development experience.

This commit is contained in:
sebseb7
2025-07-20 07:47:18 +02:00
parent 2a43b7106d
commit 429fd70497
18 changed files with 1542 additions and 149 deletions

View File

@@ -72,6 +72,24 @@ module.exports = {
resolve: {
extensions: ['.js', '.jsx'],
},
devServer: {
port: 5001,
host: '0.0.0.0',
allowedHosts: 'all',
historyApiFallback: true,
hot: false,
liveReload: false,
client: false,
static: {
directory: path.join(__dirname, 'client/public'),
},
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
},
},
},
performance: {
maxAssetSize: 512000,
maxEntrypointSize: 512000,