mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-07 21:07:46 +00:00
Co-authored-by: Sean Massa <EndangeredMassa@gmail.com> Co-authored-by: Lee Robinson <me@leerob.io>
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
})
|