mirror of
https://github.com/tale/headplane.git
synced 2026-08-28 07:57:03 +00:00
Implement path loading
Got the build working Maybe actually fix builds Copy drizzle as well
This commit is contained in:
committed by
Aarnav Tale
parent
7691f74d43
commit
5cfd9e411b
@@ -0,0 +1,16 @@
|
||||
import { resolve } from 'node:path';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
environment: 'node',
|
||||
include: ['tests/**/*.test.js'],
|
||||
exclude: ['node_modules/**', 'build/**'],
|
||||
setupFiles: ['./tests/setupOverlayFs.js'],
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'~': resolve(__dirname, './app'),
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user