fix: update login

This commit is contained in:
Maël Gangloff
2024-07-22 13:39:45 +02:00
parent 9e8523fa53
commit 1642767993
12 changed files with 33 additions and 10851 deletions

0
frontend/.gitignore vendored Normal file
View File

0
frontend/src/index.html Normal file
View File

0
frontend/tsconfig.json Normal file
View File

View File

@@ -0,0 +1,21 @@
const path = require('path');
module.exports = {
entry: './src/index.tsx',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};