bunny-web-template/build/resolve.ts

11 lines
178 B
TypeScript
Raw Normal View History

2025-02-24 18:23:33 +08:00
import { pathResolve } from './utils';
export const resolve = () => {
return {
alias: {
'@': pathResolve('../src'),
2025-05-15 22:49:56 +08:00
// '@build': pathResolve(),
},
};
2025-02-24 18:23:33 +08:00
};