mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
fix: update login
This commit is contained in:
0
frontend/.gitignore
vendored
Normal file
0
frontend/.gitignore
vendored
Normal file
0
frontend/src/index.html
Normal file
0
frontend/src/index.html
Normal file
0
frontend/tsconfig.json
Normal file
0
frontend/tsconfig.json
Normal file
21
frontend/webpack.config.js
Normal file
21
frontend/webpack.config.js
Normal 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'),
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user