refactor: update output directory paths in tsconfig and vite config for backend and frontend

This commit is contained in:
Tudor Stanciu 2025-10-03 19:40:58 +03:00
parent 9ab5b3a950
commit f63ee472c8
3 changed files with 2 additions and 4 deletions

View File

@ -16,8 +16,6 @@ RUN npm ci
# Copy source code
COPY src/ ./src/
COPY tsconfig.json ./
COPY .gitattributes ./
# Copy configuration files needed for build
COPY ReleaseNotes.json ./

View File

@ -4,7 +4,7 @@
"module": "ES2022",
"moduleResolution": "node",
"lib": ["ES2022"],
"outDir": "./dist",
"outDir": "../../dist/backend",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,

View File

@ -12,7 +12,7 @@ export default defineConfig(({ mode }) => {
plugins: [react()],
publicDir: 'public',
build: {
outDir: '../../../dist/frontend',
outDir: '../../dist/frontend',
},
server: {
proxy: {