mirror of
				https://github.com/continew-org/continew-admin.git
				synced 2025-10-31 00:57:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { resolve } from 'path';
 | |
| import { defineConfig } from 'vite';
 | |
| import vue from '@vitejs/plugin-vue';
 | |
| import vueJsx from '@vitejs/plugin-vue-jsx';
 | |
| import svgLoader from 'vite-svg-loader';
 | |
| 
 | |
| export default defineConfig({
 | |
|   plugins: [vue(), vueJsx(), svgLoader({ svgoConfig: {} })],
 | |
|   resolve: {
 | |
|     alias: [
 | |
|       {
 | |
|         find: '@',
 | |
|         replacement: resolve(__dirname, '../src'),
 | |
|       },
 | |
|       {
 | |
|         find: 'assets',
 | |
|         replacement: resolve(__dirname, '../src/assets'),
 | |
|       },
 | |
|       {
 | |
|         find: 'vue-i18n',
 | |
|         replacement: 'vue-i18n/dist/vue-i18n.cjs.js', // Resolve the i18n warning issue
 | |
|       },
 | |
|       {
 | |
|         find: 'vue',
 | |
|         replacement: 'vue/dist/vue.esm-bundler.js', // compile template
 | |
|       },
 | |
|     ],
 | |
|     extensions: ['.ts', '.js'],
 | |
|   },
 | |
|   define: {
 | |
|     'process.env': {},
 | |
|   },
 | |
|   css: {
 | |
|     preprocessorOptions: {
 | |
|       less: {
 | |
|         modifyVars: {
 | |
|           hack: `true; @import (reference) "${resolve(
 | |
|             'src/assets/style/breakpoint.less'
 | |
|           )}";`,
 | |
|         },
 | |
|         javascriptEnabled: true,
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| });
 |