加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
鈊瀡伱嗳 提交于 2023-12-11 10:08 . unocss
import { fileURLToPath, URL } from 'node:url'
import { defineConfig, loadEnv } from 'vite'
import path from 'path'
import createVitePlugins from "./vite/plugins";
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
const env = loadEnv(mode, process.cwd())
const { VITE_APP_ENV } = env
return {
base: VITE_APP_ENV === 'production' ? '/' : '/',
plugins: createVitePlugins(env, command === 'build'),
resolve: {
alias: {
// 设置路径
'~': path.resolve(__dirname, './'),
'@': fileURLToPath(new URL('./src', import.meta.url)),
'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',
},
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
},
server: {
host: '0.0.0.0',
port: env.VITE_APP_PORT,
proxy: {
"api": {
target: env.VITE_APP_API_BASEURL,
changeOrigin: true,
ws: true,
rewrite: (path) => path.replace(/^\/api/, ""),
}
}
},
//fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file
css: {
postcss: {
plugins: [
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove();
}
}
}
}
]
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化