fix: removed collage

fix: removing collage

feat: added ingredient type to server for testing and a config"

chore: setup deno server package
This commit is contained in:
Daniel Ledda
2022-06-20 22:22:42 +02:00
parent 47301a822d
commit c628f6b46e
18 changed files with 288 additions and 130 deletions

12
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import path from "path";
const config = defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
}
},
});
export default config;