funkwhale/front/vite.config.js

17 wiersze
312 B
JavaScript
Czysty Zwykły widok Historia

2022-02-21 14:07:07 +00:00
// vite.config.js
import { defineConfig } from 'vite'
import { createVuePlugin as vue } from "vite-plugin-vue2";
const path = require("path");
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})