mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 04:22:12 +00:00
Co-authored-by: Lee Robinson <me@leerob.io> Co-authored-by: Steven <steven@ceriously.com>
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()]
|
|
})
|