vite.config.ts完整配置
时间: 2023-04-28 16:01:32 浏览: 182
vite.config.ts 的完整配置如下:
```
import { UserConfig } from 'vite'
const config: UserConfig = {
// 项目的根目录
root: '/path/to/project',
// 开发服务器的端口
port: 3000, // 编译模式
mode: 'development',
// 配置路由
router: {
mode: 'history',
base: '/',
routes: [
{ path: '/', component: './index.vue' },
{ path: '/about', component: './about.vue' },
],
},
// 配置构建
build: {
// 构建目标
target: 'browser',
// 构建输出目录
outDir: 'dist',
// 是否启用 sourcemap
sourcemap: true,
},
// 配置插件
plugins: [],
// 配置环境变量
define: {
'process.env.API_URL': 'https://api.example.com',
},
}
export default config
```
这是 vite.config.ts 的一个示例配置,您可以根据自己的项目需求进行修改。
注意,根目录路径(root)和构建输出目录(outDir)需要根据实际情况进行修改。
还要注意,如果你想要使用vite插件,那么需要在plugins里进行配置。
阅读全文