diff --git a/api/main.ts b/api/main.ts index 53ba12f..48f00cd 100644 --- a/api/main.ts +++ b/api/main.ts @@ -1,12 +1,14 @@ // main API file. Handles all the routing/api stuff +// @ts-ignore import { Router, Application } from "https://deno.land/x/oak/mod.ts"; +// @ts-ignore import { oakCors } from "https://deno.land/x/cors/mod.ts"; const router = new Router(); const app = new Application(); -// Creates the routes for the API server. +// Creates the routes for the API server.S // Example: localhost:8000/api will show "testAPIPoint" // in the HTML router diff --git a/deno.lock b/deno.lock index e7f9980..10b42c6 100644 --- a/deno.lock +++ b/deno.lock @@ -17,9 +17,11 @@ "npm:@vitejs/plugin-vue@*": "5.1.4_vite@5.4.10_vue@3.5.12", "npm:@vitejs/plugin-vue@^5.1.4": "5.1.4_vite@5.4.10_vue@3.5.12", "npm:@vue/runtime-dom@*": "3.5.12", + "npm:autoprefixer@*": "10.4.20_postcss@8.4.47", "npm:autoprefixer@^10.4.20": "10.4.20_postcss@8.4.47", "npm:path-to-regexp@6.2.1": "6.2.1", "npm:postcss@^8.4.47": "8.4.47", + "npm:tailwindcss@*": "3.4.14_postcss@8.4.47", "npm:tailwindcss@^3.4.14": "3.4.14_postcss@8.4.47", "npm:url@~0.11.4": "0.11.4", "npm:vite@*": "5.4.10", diff --git a/src/App.vue b/src/App.vue index dd9e642..6e84a31 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,6 +1,6 @@