add-asset-html-webpack-plugin icon indicating copy to clipboard operation
add-asset-html-webpack-plugin copied to clipboard

Add a JavaScript or CSS asset to the HTML generated by html-webpack-plugin

Results 41 add-asset-html-webpack-plugin issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [globby](https://togithub.com/sindresorhus/globby) | [`^11.1.0` -> `^13.0.0`](https://renovatebot.com/diffs/npm/globby/11.1.0/13.1.2) | [![age](https://badges.renovateapi.com/packages/npm/globby/13.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/SimenB/add-asset-html-webpack-plugin). ## Config Migration Needed - [ ]...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [slash](https://togithub.com/sindresorhus/slash) | [`^3.0.0` -> `^4.0.0`](https://renovatebot.com/diffs/npm/slash/3.0.0/4.0.0) | [![age](https://badges.renovateapi.com/packages/npm/slash/4.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

When I configure this way why is the script tag src property path 'auto/dll_react.js' in the resulting html file not 'dll_react.js' ```javascript new HtmlWebpackPlugin({ template: './index.html' }), new VueLoaderPlugin(), new...

1.the config: ` plugins:[ new HtmlWebpackPlugin({ template: './src/index.html' }), new webpack.DllReferencePlugin({ manifest: resolve(__dirname, 'dll/manifest.json') }), new AddAssetHtmlWebpackPlugin({ filepath: require.resolve("./dll/jquery.js") }) ] ` 2.run 'webpack' success 3.but the inserted script label...

This adds an `inject` option to conditionally inject into the HTML. This is useful when you generate multiple html files and want to inject some files only into some of...

Can you add support for the `[name]` placeholder? So we can use the plugin dynamically and accordingly to entries.

enhancement
help wanted

I find it conflicts with speed-measure-webpack-plugin: ![screenshot_2020-03-09_14-50-55](https://user-images.githubusercontent.com/41773861/76189368-741b4180-6215-11ea-8a3b-77b104554976.png) When I remove speed-measure-webpack-plugin,no this error. The project repository: [coo](https://github.com/tjx666/coo); `webpack.dev.ts`: ```typescript import { resolve } from 'path'; import merge from 'webpack-merge'; import...

When I use the plugin, all assets from `add-asset-html-webpack-plugin` is placed before the main script added from `html-webpack-plugin`, which is different from in the examples I don't use DLL plugin...