1 Star 0 Fork 10

lkmliukaiming/element-plus-designer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
wizount 提交于 2023-10-13 21:23 . 修改readme的直接使用
import { defineConfig, loadEnv } from 'vite'
import path from 'path'
import createVitePlugins from './vite/plugins'
// 部署在网站
export default defineConfig(({ mode, command }) => {
const env = loadEnv(mode, process.cwd())
const { VITE_APP_ENV } = env
return {
base: VITE_APP_ENV === 'production' ? '/element-plus-designer' : '/',
plugins: createVitePlugins(env, 'build'),
// build:{
// outDir:"./dist",
// },
resolve: {
// https://cn.vitejs.dev/config/#resolve-alias
alias: {
// 设置路径
'~': path.resolve(__dirname, './'),
// 设置别名
'@': path.resolve(__dirname, './src')
},
// https://cn.vitejs.dev/config/#resolve-extensions
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
},
css: {
postcss: {
plugins: [
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove();
}
}
}
}
]
}
},
esbuild: {
jsxFactory: 'h',
jsxFragment: 'Fragment'
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/liukaiming/element-plus-designer.git
[email protected]:liukaiming/element-plus-designer.git
liukaiming
element-plus-designer
element-plus-designer
master

搜索帮助