vite +electron 使用normalize.css
时间: 2024-01-25 15:02:25 浏览: 335
electron-vite-quick-start:全栈使用 Vite 运行 Electron 应用程序,包括主进程
要在 Vite + Electron 中使用 normalize.css,可以按照以下步骤操作:
1. 首先,安装 normalize.css:
```
npm install normalize.css
```
2. 在你的主进程中引入 normalize.css,例如在 `main.js` 中:
```js
import 'normalize.css';
```
3. 在你的渲染进程中引入 normalize.css,例如在 `renderer.js` 中:
```js
import 'normalize.css';
```
4. 最后,在你的 HTML 文件中使用 `<link>` 标签引入你的样式文件:
```html
<link rel="stylesheet" href="./styles/main.css">
```
注意,你需要将 `./styles/main.css` 替换为你实际的样式文件路径。
这样,你就可以在 Vite + Electron 中使用 normalize.css 了。
阅读全文