generated from matfantinel/sveltekit-static-blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsvelte.config.js
More file actions
32 lines (30 loc) · 981 Bytes
/
svelte.config.js
File metadata and controls
32 lines (30 loc) · 981 Bytes
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
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import adapter from '@sveltejs/adapter-vercel';
/** @type {import('@sveltejs/kit/types').Config} */
const config = {
kit: {
adapter: adapter(),
version: {
name: Date.now().toString(),
},
prerender: {
handleHttpError: 'warn',
origin: process.env.VERCEL_PROJECT_PRODUCTION_URL
? `https://${process.env.VERCEL_PROJECT_PRODUCTION_URL}`
: undefined,
},
alias: {
$components: './src/lib/components',
$lib: './src/lib',
$stores: './src/lib/stores',
$styles: './src/lib/scss',
$utils: './src/lib/utils',
$routes: './src/routes',
$assets: './src/lib/assets',
},
},
vitePlugin: { inspector: true },
preprocess: [vitePreprocess({ script: true })],
extensions: ['.svelte'],
};
export default config;