-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
81 lines (74 loc) · 1.71 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import mkcert from "vite-plugin-mkcert";
// https://github.com/sapphi-red/vite-plugin-static-copy#usage
import { viteStaticCopy, type Target } from 'vite-plugin-static-copy'
import { collectFileInformation } from "./src/dynamicFiles";
export default defineConfig(async ({ command, mode }) => {
const { files, images } = await collectFileInformation(undefined, true);
(global as any).listOfModelFiles = files;
const copyTargets: Target[] = [];
copyTargets.push(...files.flatMap((file) => {
// console.log(file.paths.threeScreenshot, file.paths.gltf)
return [
{
src: file.paths.gltf,
dest: "downloads",
},
{
src: file.paths.threeUsdz,
dest: "downloads",
},
{
src: file.paths.threeScreenshot,
dest: "downloads",
},
{
src: file.paths.blenderUsdz,
dest: "downloads",
},
{
src: file.paths.blenderScreenshot,
dest: "downloads",
},
{
src: file.paths.ovUsdz,
dest: "downloads",
},
{
src: file.paths.ovScreenshot,
dest: "downloads",
},
]
}));
copyTargets.push(...images.map((image) => {
return {
src: image.absolutePath,
dest: image.targetPath,
}
}));
/*
const { needlePlugins, useGzip, loadConfig } = await import("@needle-tools/engine/plugins/vite/index.js");
const needleConfig = await loadConfig();
needleConfig.useRapier = false;
*/
return {
plugins: [
mkcert(),
viteStaticCopy({
targets: copyTargets,
}),
sveltekit(),
// needlePlugins(command, needleConfig),
],
build: {
target: "esnext",
},
optimizeDeps: {
exclude: ["three"],
},
define: {
NEEDLE_USE_RAPIER: false,
}
}
})