vite.config怎么配置
时间: 2023-10-14 19:17:33 浏览: 101
vite.config.js
vite.config.js 是 Vite 的配置文件,用于配置项目的各种选项。以下是一些常见的配置项:
- `root`:指定项目的根目录,默认为当前工作目录。
- `base`:指定项目在服务器上的基础路径,默认为 `/`。
- `build`:指定项目的构建选项,如输出目录、打包格式等。
- `plugins`:指定使用的插件,如 Vue 插件、CSS 预处理器插件等。
示例配置:
```js
// vite.config.js
export default {
root: './src',
base: '/my-app/',
build: {
outDir: '../dist',
rollupOptions: {
input: './index.html',
output: {
format: 'es',
},
},
},
plugins: [
vue(),
postcss(),
],
};
```
阅读全文