chore: update .prettierignore and format vite.config.mts

- Added routeTree.gen.ts to .prettierignore to prevent formatting of generated files.
- Reformatted the external dependencies list in vite.config.mts for improved readability.
This commit is contained in:
Kacper
2026-01-02 20:56:40 +01:00
parent 8e1a9addc1
commit 3c8ee5b714
2 changed files with 15 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ pnpm-lock.yaml
# Generated files # Generated files
*.min.js *.min.js
*.min.css *.min.css
routeTree.gen.ts
apps/ui/src/routeTree.gen.ts
# Test artifacts # Test artifacts
test-results/ test-results/

View File

@@ -70,7 +70,19 @@ export default defineConfig(({ command }) => {
build: { build: {
outDir: 'dist', outDir: 'dist',
rollupOptions: { rollupOptions: {
external: ['child_process', 'fs', 'path', 'crypto', 'http', 'net', 'os', 'util', 'stream', 'events', 'readline'], external: [
'child_process',
'fs',
'path',
'crypto',
'http',
'net',
'os',
'util',
'stream',
'events',
'readline',
],
}, },
}, },
optimizeDeps: { optimizeDeps: {