加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 771 Bytes
一键复制 编辑 原始数据 按行查看 历史
dengshangxing 提交于 2022-09-08 16:12 . tsx改造
import type { UserConfigExport, ConfigEnv } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
import { loadEnv } from 'vite';
import vueJsx from '@vitejs/plugin-vue-jsx';
// https://vitejs.dev/config/
export default ({ mode }: ConfigEnv): UserConfigExport => {
const { VITE_APP_PORT } = loadEnv(mode, process.cwd());
return {
plugins: [vue(), vueJsx()],
resolve: {
alias: [
{
find: /@\//,
replacement: resolve(__dirname, 'src') + '/'
}
],
extensions: ['.ts', '.js', '.jsx', '.tsx']
},
server: {
https: false,
host: true,
port: Number(VITE_APP_PORT)
},
css: {
modules: {
localsConvention: 'camelCase'
}
}
};
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化