0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00
penpot/frontend/vite.config.js

12 lines
231 B
JavaScript
Raw Normal View History

2023-11-24 06:24:47 -05:00
import { defineConfig } from "vite";
import { resolve } from "path";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
"@target": resolve(__dirname, "./target/storybook"),
},
},
});