Procházet zdrojové kódy

feat: bootstrap NestJS server with HTTPS support and add TFLite model assets

Dr-Swopt před 5 dny
rodič
revize
8a7a5e8336
3 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/main.ts
  2. binární
      tflite/best_float16.tflite
  3. binární
      tflite/best_float32.tflite

+ 1 - 1
src/main.ts

@@ -13,7 +13,7 @@ async function bootstrap() {
   const app = await NestFactory.create(AppModule, { httpsOptions });
 
   app.enableCors({
-    origin: 'https://192.168.100.100:4200',
+    origin: ['https://192.168.100.100:4200', 'https://localhost:4200'],
     credentials: true,
   });
 

binární
tflite/best_float16.tflite


binární
tflite/best_float32.tflite