feat: wire up planty with nodarium/app
Some checks failed
📊 Benchmark the Runtime / release (push) Successful in 3m55s
🚀 Lint & Test & Deploy / release (push) Failing after 56s

This commit is contained in:
2026-04-20 01:08:52 +02:00
parent 168e6fcc19
commit 4de15b19c8
10 changed files with 394 additions and 37 deletions

View File

@@ -4,6 +4,7 @@ import { playwright } from '@vitest/browser-playwright';
import comlink from 'vite-plugin-comlink';
import glsl from 'vite-plugin-glsl';
import wasm from 'vite-plugin-wasm';
import path from 'path';
import { defineConfig } from 'vitest/config';
export default defineConfig({
@@ -19,6 +20,11 @@ export default defineConfig({
comlink()
]
},
resolve: {
alias: {
'@nodarium/planty': path.resolve(__dirname, '../packages/planty/src/lib/index.ts')
}
},
ssr: {
noExternal: ['three']
},