fix: removing collage feat: added ingredient type to server for testing and a config" chore: setup deno server package
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
import { defineConfig } from "vite";
|
|
import path from "path";
|
|
|
|
const config = defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
}
|
|
},
|
|
});
|
|
|
|
export default config; |