We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c0cb3f commit 2ebe87eCopy full SHA for 2ebe87e
2 files changed
.gitignore
@@ -10,6 +10,7 @@ lerna-debug.log*
10
node_modules
11
dist
12
dist-ssr
13
+*-dist
14
*.local
15
16
# Editor directories and files
vite.config.ts
@@ -38,6 +38,9 @@ export default defineConfig({
38
runtimeTelemetryPlugin(),
39
...extraPlugins,
40
],
41
+ build: {
42
+ outDir: process.env.OUTPUT_DIR || 'dist'
43
+ },
44
define: {
45
// ensure that you give these types in `src/vite-end.d.ts`
46
GITHUB_RUNTIME_PERMANENT_NAME: JSON.stringify(GITHUB_RUNTIME_PERMANENT_NAME),
0 commit comments