import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ server: { host: true }, plugins: [vue()] }) module.exports = { publicPath: './', outputDir: 'dist', indexPath: 'index.html' }