diff --git a/apps/frontend/vite.config.ts b/apps/frontend/vite.config.ts index 6c8c763..bb46c9a 100644 --- a/apps/frontend/vite.config.ts +++ b/apps/frontend/vite.config.ts @@ -24,7 +24,6 @@ export default defineConfig(({ mode }) => { algorithms: ['gzip'], exclude: [/\.(gz)$/], threshold: 10240, - deleteOriginalAssets: true, }), visualizer({ open: false, diff --git a/package.json b/package.json index 9e378ad..683f1ff 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,12 @@ "packages/*" ], "scripts": { - "dev:frontend": "pnpm --filter frontend dev", - "build:frontend": "pnpm --filter frontend build", - "dev:backend": "pnpm --filter backend dev", - "build:backend": "pnpm --filter backend build", - "lint:fix": "pnpm --filter frontend lint:fix && pnpm --filter backend lint:fix", - "postinstall": "pnpm --filter shared build" + "dev:frontend": "pnpm -F frontend dev", + "build:frontend": "pnpm -F frontend build", + "dev:backend": "pnpm -F backend dev", + "build:backend": "pnpm -F backend build", + "lint:fix": "pnpm -F frontend lint:fix && pnpm -F backend lint:fix", + "postinstall": "pnpm -F shared build" }, "dependencies": { "http-status-codes": "catalog:public",