/ concept-collection / shtns-webgpu
Sign in
concept-collection / shtns-webgpu
shtns-webgpu / vite.config.ts
15 lines · 328 BCodeBlameHistory
fe1c1afshtns-webgpu: fp32 spherical harmonic transforms on WebGPUJeremy Magland 1import { defineConfig } from 'vite';
2import { resolve } from 'node:path';
4export default defineConfig({
5 base: './',
6 build: {
7 target: 'es2022',
8 rollupOptions: {
9 input: {
10 main: resolve(import.meta.dirname, 'index.html'),
11 test: resolve(import.meta.dirname, 'test.html'),
12 },
13 },
14 },
15});
moveopenescclose