- Unarchiver
Wireless USB Adapter Clover-V15.pkg
. - Right Click on
drivers.pkg
, clickShow Package Contents
. - Unarchiver
Payload
, you will get aPayload-1
. - Unarchiver
Payload-1
, you will get theEFI
folder,kext
files are here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 使用 Chromium 内核,作用于 360 浏览器、QQ 浏览器等国产双核浏览器 --> | |
<meta name="renderer" content="webkit" /> | |
<!-- 使用 Chromium 内核,作用于其他双核浏览器 --> | |
<meta name="force-rendering" content="webkit" /> | |
<!-- 如果有安装 Google Chrome Frame 插件则使用 Chromium 内核,否则使用本机支持的最高版本 IE 内核,作用于 IE 浏览器 --> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
module.exports = () => { | |
return { | |
webpack: { | |
configure: (webpackConfig, { env }) => { | |
if (env !== 'development') { | |
const htmlWebpackPluginInstance = webpackConfig.plugins.find( | |
webpackPlugin => webpackPlugin instanceof HtmlWebpackPlugin | |
); |