Initial commit: Clean Twilio app project

This commit is contained in:
2025-06-28 10:48:06 +08:00
commit 59d40cc2e0
57 changed files with 20710 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 3000,
host: true,
},
build: {
outDir: 'dist',
sourcemap: true,
},
})