starchat-ui / vitest.config.ts
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame contribute delete
No virus
177 Bytes
import path from 'path';
import { defineConfig } from 'vite';
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './'),
},
},
});