This commit is contained in:
2024-05-13 11:25:12 +07:00
parent 90e1a88461
commit f567aed4da
3 changed files with 129 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
build: {
outDir: 'dist',
minify: false,
rollupOptions: {
output: {
entryFileNames: '[name].js', // Đổi tên của các file JavaScript đầu ra
}
}
},
});