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