prerender-loader icon indicating copy to clipboard operation
prerender-loader copied to clipboard

📰 Painless universal pre-rendering for Webpack.

Results 29 prerender-loader issues
Sort by recently updated
recently updated
newest added

- "prerender-loader": "^1.3.0", - "webpack": "^5.3.2", - "webpack-cli": "^3.3.12", ![image](https://user-images.githubusercontent.com/7261176/103478388-4be27c00-4e01-11eb-937e-6b8baa3ff656.png) when I run webpack it turn out this. I can not find `webpack/lib/MultiEntryPlugin`in webpack5 lib. but how to fix this?

window.TextEncoder and window.TextDecoder are standard browser features not supported by JSDOM but which React 18 [now requires](https://github.com/facebook/react/blob/e09518e5bbb78447d6c86481cf0dcafb4b09c734/packages/react-server/src/ReactServerStreamConfigBrowser.js#L107). This PR patches those with the [node implementation](https://nodejs.org/api/util.html#class-utiltextencoder) Cheers!

Fails even if installled only (via `yarn add --dev prerender-loader`) and with following code (commented is really commented): ```js // webpack.config.js const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const...

Hi! Properties from "templateParameters" do not appear in html when using "prerender-loader". Minimal code to reproduce: `webpack.config.js` ```js const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); module.exports = { mode:...

My `/src/template.html` file looks like this: ``` {{prerender}} ``` And this is my `webpack.config.js`: ``` const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const CleanWebpackPlugin = require('clean-webpack-plugin'); const entry =...

After adding `prerender-loader` to my production build `npm run build` hangs after the job is finished(and the build is successful with prerendering done) and requires manual ctrl+c whereas without it...

Prerendering multiple entries in conjunction with the `{{prerender}}` injection point results in the following error: > Error: Conflict: Multiple chunks emit assets to the same filename ssr-bundle.js even when an...

Hi! Required jsdom@11 does not support some Element's methods, for example `.insertAdjacentText`. Can this dependency be upgraded?

```javascript entry: [ "webpack-hot-middleware/client?reload=true&path=/__webpack_hmr", "@babel/polyfill", "./src/index.js", "./dll/vendor.dll.js" ], new HtmlWebpackPlugin({ filename: "index.html", favicon: "./public/favicon.png", template: `!!prerender-loader?string!${path.resolve(__dirname, "public", "index.ejs")}`, inject: true, templateParameters: { dll: "", manifest: "" } }), ``` Error...

question
has answer

Hey! I've come across this project recently and it's very useful but there's been no release since last February. Has this project been abandoned? @developit any chance of merging existing...