feat(frontend): add types + format helpers with tdd
This commit is contained in:
parent
3b8400b2ed
commit
a1e24c6a81
5 changed files with 150 additions and 0 deletions
12
frontend/vite.config.ts
Normal file
12
frontend/vite.config.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { defineConfig } from 'vite';
|
||||
import { resolve } from 'node:path';
|
||||
|
||||
export default defineConfig({
|
||||
resolve: {
|
||||
alias: {
|
||||
'@lib': resolve(__dirname, 'src/lib'),
|
||||
'@components': resolve(__dirname, 'src/components'),
|
||||
'@styles': resolve(__dirname, 'src/styles'),
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue