blob: e4b56a21767205a6a22885ee31fbc826ab676086 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Consult https://vitejs.dev/config/ to learn about these options
import { resolve } from 'path';
export default {
resolve: {
alias: {
$components: resolve('src/components'),
$config: resolve('src/config')
}
}
};
|