Files
stocca-tre/frontend/vite.config.ts
Daniel Ledda c628f6b46e fix: removed collage
fix: removing collage

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

chore: setup deno server package
2022-06-21 23:07:01 +02:00

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;