uppy/examples/vue3/vite.config.js
2022-08-22 15:25:22 +02:00

11 lines
278 B
JavaScript

import { fileURLToPath } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const ROOT = new URL('../../', import.meta.url)
// https://vitejs.dev/config/
export default defineConfig({
envDir: fileURLToPath(ROOT),
plugins: [vue()],
})