This repository has been archived on 2024-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
hmr: true
|
|
}
|
|
})
|