All checks were successful
continuous-integration/drone/push Build is passing
Replace project-local ESLint, Prettier, TypeScript, and Vite configs with shared packages from dev-configs monorepo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
363 B
TypeScript
19 lines
363 B
TypeScript
import {spa} from '@vigdorov/vite-config';
|
|
import {mergeConfig} from 'vite';
|
|
|
|
export default mergeConfig(
|
|
spa({
|
|
port: 4000,
|
|
}),
|
|
{
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:4001',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
);
|