benjycui / bisheng

Transform Markdown(and other static files with transformers) into a SPA website using React.
MIT License
2.9k stars 419 forks source link

feat: support inserting code in the front position of entry file #221

Closed vagusX closed 4 years ago

vagusX commented 4 years ago

在部分场景下,我们需要手动设置 __webpack_public_path__ 来配置 webpack 的 publicPath, 参考 webpack 官方文档, 我们需要将如下代码放到 entry 文件中,因此希望新增一个配置 earlyEntry 来支持在入口文件塞一些自定义的内容

__webpack_public_path__ = process.env.ASSET_PATH;

目前采取 hack 的方式手动前置去修改 bisheng/tmp/entry.index.js 的代码解决的😂