Skip to content

Commit

Permalink
file upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yuta4j1 committed Jul 23, 2023
1 parent 67e9a75 commit 4166aa0
Show file tree
Hide file tree
Showing 8 changed files with 2,630 additions and 253 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
dist
coverage
8 changes: 8 additions & 0 deletions esbuild.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
require("esbuild")
.build({
entryPoints: ["server/app.ts"],
bundle: true,
platform: "node",
outfile: "dist/server.js",
})
.catch(() => process.exit(1));
Loading

0 comments on commit 4166aa0

Please sign in to comment.