13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@lilith/trust-shared': path.resolve(__dirname, '../shared/src/index.ts'),
|
|
},
|
|
},
|
|
server: { port: 5237 },
|
|
});
|