1 Star 0 Fork 27

haozheyu/koi-screen-plus

forked from 于金金/koi-screen-plus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
于金金 提交于 2023-03-21 13:33 . 1、vue3代码重构完成
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0', // 本地IP访问,localhost访问
port: 7778, // 端口号
hmr: true, // 热更新
open: false, // false关闭,true打开。启动项目后,自动在浏览器打开(浏览器已经打开的情况)
},
resolve: {
alias: [
{
find: '@', // 配置别名,tsconfig.json里面也需要配置. @等价于src
replacement: resolve(__dirname, 'src')
}
]
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wwwhaozheyu/koi-screen-plus.git
git@gitee.com:wwwhaozheyu/koi-screen-plus.git
wwwhaozheyu
koi-screen-plus
koi-screen-plus
master

搜索帮助