mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 07:48:14 +00:00
Implement path-based secret loading
This commit is contained in:
committed by
Aarnav Tale
parent
c3a50ea4f4
commit
8ea8c7195f
@@ -0,0 +1,16 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
globals: true,
|
||||
environment: 'node',
|
||||
include: ['tests/*.test.js'],
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'~': resolve(__dirname, './app'),
|
||||
'~server': resolve(__dirname, './server'),
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user