Skip to content

Commit 682ef08

Browse files
authoredFeb 5, 2025
Merge pull request #5 from pawelborkar/dev
fix: styling issue
2 parents 19edea5 + 8422bc5 commit 682ef08

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎api/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"dev": "ts-node app.ts --watch",
1515
"build": "rm -rf dist && tsc",
1616
"clean": "rm -rf dist",
17-
"build:prod": "npm run clean && tsc",
1817
"watch": "tsc -w",
1918
"lint": "eslint .",
2019
"format": "prettier --write ."

‎web/vite.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ export default defineConfig({
88
server: {
99
port: 5050,
1010
},
11+
build: {
12+
outDir: "dist",
13+
},
1114
});

0 commit comments

Comments
 (0)
Please sign in to comment.