1 Star 0 Fork 2

iii80/diyp-iptv-manager

forked from wizount/diyp-iptv-manager 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 2.21 KB
一键复制 编辑 原始数据 按行查看 历史
wizount 提交于 2023-12-19 15:04 . 增加演示地址
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' ? '/diyp-iptv-manager' : '/',
plugins: createVitePlugins(env, 'build'),
build:{
outDir:'./iptv-checker-server/dist/client'
},
// 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']
},
// vite 相关配置
server: {
port: 8080,
host: true,
open: true,
proxy: {
// https://cn.vitejs.dev/config/#server-proxy
'/check': {
target: 'http://localhost:2000',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/check/, '/check')
},
'/ws': {
target: 'http://127.0.0.1:2000',
ws: true,
changeOrigin: true,
rewrite: (p) => p.replace(/^\/ws/, '/ws')
},
}
},
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/iii80/diyp-iptv-manager.git
git@gitee.com:iii80/diyp-iptv-manager.git
iii80
diyp-iptv-manager
diyp-iptv-manager
master

搜索帮助