/
concept-collection
/
shtns-webgpu
Jump to
/
Appearance
Match my system
Paper
GitHub
Slate
Midnight
Terminal
Sign in
concept-collection
/
shtns-webgpu
Code
Commits
Issues
0
Pull requests
0
Actions
Branches
1
Tags
0
Site
fe1c1af
Branches
main
shtns-webgpu
/
vite.config.ts
15 lines · 328 B
Copy
Copied
Blame
History
Raw
1
import
{ defineConfig }
from
'vite'
;
2
import
{ resolve }
from
'node:path'
;
3
4
export
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
});
↑
↓
move
↵
open
esc
close