mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-29 17:07:24 +02:00
frontend: react+mui (#3004)
* mui v5 wip * wip * wip * wip * use compressor for all controlplane endpoints * wip * wip * add deps * fix authenticate URL * fix test * fix test * fix build * maybe fix build * fix integration test * remove image asset test * add yarn.lock
This commit is contained in:
parent
64d8748251
commit
2824faecbf
84 changed files with 13373 additions and 1455 deletions
16
ui/scripts/esbuild.ts
Normal file
16
ui/scripts/esbuild.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { build } from "esbuild";
|
||||
|
||||
build({
|
||||
entryPoints: ["src/index.tsx"],
|
||||
bundle: true,
|
||||
outfile: "dist/index.js",
|
||||
sourcemap: "inline",
|
||||
watch: process.argv.includes("--watch"),
|
||||
minify: !process.argv.includes("--watch"),
|
||||
logLevel: "info",
|
||||
loader: {
|
||||
".svg": "dataurl",
|
||||
".woff": "dataurl",
|
||||
".woff2": "dataurl",
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue