forked from temporalio/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvelte.config.js
36 lines (32 loc) · 959 Bytes
/
svelte.config.js
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
import preprocess from 'svelte-preprocess';
import vercel from '@sveltejs/adapter-vercel';
// Workaround until SvelteKit uses Vite 2.3.8 (and it's confirmed to fix the Tailwind JIT problem)
const mode = process.env.NODE_ENV;
const dev = mode === 'development';
process.env.TAILWIND_MODE = dev ? 'watch' : 'build';
const buildTarget = process.env.VITE_TEMPORAL_UI_BUILD_TARGET || 'local';
let outputDirectory = `build-${buildTarget}`;
const publicPath = process.env.VITE_PUBLIC_PATH || '';
/** @type {import('@sveltejs/kit').Config} */
export default {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
preprocess({
postcss: true,
}),
],
kit: {
adapter: vercel({
pages: outputDirectory,
assets: outputDirectory,
fallback: 'index.html',
}),
paths: {
base: publicPath,
},
version: {
pollInterval: 10000,
},
},
};