代码拉取完成,页面将自动刷新
同步操作将从 野火IM/voip-uni 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const HtmlWebpackPlugin = require('html-webpack-plugin')
const HtmlWebpackInlineSourcePlugin = require('html-webpack-inline-source-plugin');
const {readFileSync} = require("fs");
module.exports = {
devServer: {
https: true,
// 本地调试时,配置需要配置正确的证书
// 需要使用域名,及对应的证书,最好用阿里云等申请的免费证书,否则可能会有问题
// host: 'voip.wfim.work', // 此域名解析到 192.168.2.180,如果你能把你本地的 ip 固定成这个,那么可以直接使用
// port: 443,
// disableHostCheck: true,
// key: readFileSync('./cert/test.key'),
// cert: readFileSync('./cert/test.pem')
},
css: {
extract: false,
},
configureWebpack: {
// externals 目前没生效
externals: {
client: /\/client\//,
},
optimization: {
splitChunks: false // makes there only be 1 js file - leftover from earlier attempts but doesn't hurt
},
plugins: [
new HtmlWebpackPlugin({
filename: 'voip-dist.html', // the output file name that will be created
template: 'src/output-template.html', // this is important - a template file to use for insertion
inlineSource: '.(js|css)$' // embed all javascript and css inline
}),
new HtmlWebpackInlineSourcePlugin(HtmlWebpackPlugin)
]
},
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。