-
Notifications
You must be signed in to change notification settings - Fork 0
/
svelte.config.js
38 lines (34 loc) · 1.01 KB
/
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
37
38
import { config as envConfig } from 'dotenv';
import nodeAdapter from '@sveltejs/adapter-node';
import netlifyAdapter from '@sveltejs/adapter-netlify';
import autoAdapter from '@sveltejs/adapter-auto';
// Load environment variables
envConfig();
const adapter = process.env?.VITE_ADAPTER;
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter:
adapter === 'netlify'
? netlifyAdapter({
// if true, will create a Netlify Edge Function rather
// than using standard Node-based functions
edge: false,
// if true, will split your app into multiple functions
// instead of creating a single one for the entire app.
// if `edge` is true, this option cannot be used
split: false
})
: adapter === 'node'
? nodeAdapter({
out: 'build',
env: {
host: 'HOST',
port: 3000
}
})
: autoAdapter()
}
};
export default config;