- `<Space direction>` -> `orientation` e `children` -> `content` no Popconfirm, acompanhando o rename da API no Ant Design 6. - `allowedHosts: true` no Vite para permitir acesso ao dev server por hostname da rede local. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
/// <reference types='vitest' />
|
|
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
|
import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
|
|
|
|
export default defineConfig(() => ({
|
|
root: import.meta.dirname,
|
|
cacheDir: '../../node_modules/.vite/apps/web',
|
|
server: {
|
|
port: 4200,
|
|
host: '0.0.0.0',
|
|
allowedHosts: true,
|
|
// Proxy /api/* → API Nest em :3000 (default API_PORT).
|
|
// Evita CORS em dev e mantém URL relativa no código da Web — em produção,
|
|
// mesmo origin via Nginx (/api/* → backend).
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:3000',
|
|
changeOrigin: false,
|
|
},
|
|
},
|
|
},
|
|
preview: {
|
|
port: 4200,
|
|
host: '0.0.0.0',
|
|
},
|
|
plugins: [react(), nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
|
|
// Uncomment this if you are using workers.
|
|
// worker: {
|
|
// plugins: () => [ nxViteTsPaths() ],
|
|
// },
|
|
build: {
|
|
outDir: '../../dist/apps/web',
|
|
emptyOutDir: true,
|
|
reportCompressedSize: true,
|
|
commonjsOptions: {
|
|
transformMixedEsModules: true,
|
|
},
|
|
},
|
|
test: {
|
|
name: 'web',
|
|
watch: false,
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
reporters: ['default'],
|
|
coverage: {
|
|
reportsDirectory: '../../coverage/apps/web',
|
|
provider: 'v8' as const,
|
|
},
|
|
},
|
|
}));
|