-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.mts
More file actions
40 lines (37 loc) · 751 Bytes
/
vercel.mts
File metadata and controls
40 lines (37 loc) · 751 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
33
34
35
36
37
38
39
40
/**
* @file vercel
* @module config/vercel
* @see https://vercel.com/docs/project-configuration/vercel-ts
*/
import type { VercelConfig } from '@vercel/config/v1'
/**
* The vercel configuration.
*
* @see {@linkcode VercelConfig}
*
* @const {VercelConfig} config
*/
const config: VercelConfig = {
buildCommand: '',
cleanUrls: true,
crons: [],
devCommand: null,
framework: null,
git: { deploymentEnabled: false },
headers: [],
ignoreCommand: null,
installCommand: null,
outputDirectory: 'dist',
public: false,
redirects: [
{
destination: 'https://github.com/flex-development',
source: '/',
statusCode: 301
}
],
rewrites: [],
routes: [],
trailingSlash: false
}
export default config