添加短信验证服务
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-18 08:48:04 +00:00
parent 7ce61e9879
commit 680b9a3e1c
14 changed files with 321 additions and 60 deletions

View File

@@ -4,10 +4,13 @@ await esbuild.build({
entryPoints: ['src/server.ts'],
bundle: true,
platform: 'node',
format: 'esm',
format: 'cjs',
target: 'node22',
outfile: 'dist/server.js',
outfile: 'dist/server.cjs',
sourcemap: true,
packages: 'external',
tsconfig: 'tsconfig.json',
define: {
'import.meta.url': 'undefined',
},
});