19 lines
		
	
	
		
			390 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			390 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { fileURLToPath, URL } from 'url';
 | |
| 
 | |
| import { defineConfig } from 'vite';
 | |
| import vue from '@vitejs/plugin-vue';
 | |
| import vueJsx from '@vitejs/plugin-vue-jsx';
 | |
| 
 | |
| // https://vitejs.dev/config/
 | |
| export default defineConfig({
 | |
|   plugins: [vue(), vueJsx()],
 | |
|   define: {
 | |
|     global: {},
 | |
|   },
 | |
|   resolve: {
 | |
|     alias: {
 | |
|       '@': fileURLToPath(new URL('./src', import.meta.url)),
 | |
|     },
 | |
|   },
 | |
| });
 |