We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07ae854 commit ae62aacCopy full SHA for ae62aac
.cursorrules
@@ -96,5 +96,34 @@ module.exports = {
96
'COMMITS_SOURCE',
97
'GAMES_SOURCE'
98
]
99
+ },
100
+
101
+ // Deployment configurations
102
+ deployment: {
103
+ platforms: ['netlify', 'vercel'],
104
+ netlify: {
105
+ buildCommand: 'pnpm run netlify-build',
106
+ publishDir: 'dist/',
107
+ functions: {
108
+ directory: 'dist/functions',
109
+ bundler: 'esbuild'
110
111
+ environment: {
112
+ NPM_FLAGS: '--no-optional',
113
+ CI: '1'
114
+ }
115
116
+ vercel: {
117
+ buildCommand: 'pnpm run vercel-build',
118
+ distDir: 'static',
119
+ buildSteps: [
120
+ 'test-prebuild',
121
+ 'build-lists-and-api',
122
+ 'test-postbuild-api'
123
+ ],
124
+ github: {
125
+ silent: true
126
127
128
}
129
0 commit comments