From f0a0362b5fb5f8492d1e446f1256077ce2dcbc92 Mon Sep 17 00:00:00 2001 From: GamerCleanVic Date: Mon, 29 Apr 2024 08:14:53 -0300 Subject: [PATCH] public dir conf --- public/exemp.html | 11 ----------- tsconfig.json | 3 ++- vercel.json | 4 +++- 3 files changed, 5 insertions(+), 13 deletions(-) delete mode 100644 public/exemp.html diff --git a/public/exemp.html b/public/exemp.html deleted file mode 100644 index 53f9550..0000000 --- a/public/exemp.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - Document - - -

TESTE PASTA PUBLIC

- - diff --git a/tsconfig.json b/tsconfig.json index afae2e7..be3a934 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,7 +23,8 @@ ] }, "include": [ - "src/**/*.ts" + "src/**/*.ts", + "public/**/*.ts" ], "exclude": [ "errors", diff --git a/vercel.json b/vercel.json index caeabaf..b3c9673 100644 --- a/vercel.json +++ b/vercel.json @@ -5,6 +5,8 @@ } }, "routes": [ - { "src": "/(.*)", "dest": "/api/index.php" } + { "src": "/(.*)", + "dest": "/api/index.php" + } ] }