chatbot / vitest.config.ts
matthoffner's picture
Upload 242 files
15d9c3e
raw
history blame
177 Bytes
import path from 'path';
import { defineConfig } from 'vite';
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './'),
},
},
});