代码拉取完成,页面将自动刷新
import * as path from 'path';
import { defineConfig, loadEnv, PluginOption } from 'vite';
import react from '@vitejs/plugin-react';
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
import { viteMockServe } from 'vite-plugin-mock';
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
const root = process.cwd();
const env = loadEnv(mode, root);
const { VITE_APP_PORT, VITE_APP_MOCK } = env;
const isBuild = command === 'build';
// vite 插件
const vitePlugins: (PluginOption | PluginOption[])[] = [
react(),
// vite-plugin-svg-icons
createSvgIconsPlugin({
// Specify the icon folder to be cached
iconDirs: [path.resolve(__dirname, './src/assets/iconsvg')],
// Specify symbolId format
symbolId: 'icon-[name]',
}),
];
// vite-plugin-mock
if (VITE_APP_MOCK === 'true') {
vitePlugins.push(
viteMockServe({
mockPath: 'mock',
supportTs: true,
watchFiles: true,
localEnabled: !isBuild,
prodEnabled: isBuild,
logger: true,
}),
);
}
return {
root,
server: {
host: true,
port: Number(VITE_APP_PORT || 3000),
/*
proxy: {
'/api': {
// 用于开发环境下的转发请求
// 更多请参考:https://vitejs.dev/config/#server-proxy
target: 'https://vitejs.dev/config/#server-proxy',
changeOrigin: true,
},
},
*/
},
resolve: {
alias: [
{
find: /^~/,
replacement: `${path.resolve(__dirname, './node_modules')}/`,
},
{
find: /@\//,
replacement: `${path.resolve(__dirname, './src')}/`,
},
],
},
plugins: vitePlugins,
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
};
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。