create html with the bundle file
npm install rollup-plugin-bundle-htmlyarn add --dev rollup-plugin-bundle-html
or
npm install -D rollup-plugin-bundle-html
js
import html from 'rollup-plugin-bundle-html';export default {
input: 'src/main.js',
output: {
file: 'dist/foo/bundle.js',
},
plugins: [
html({
template: 'src/template.html',
// or html code: '
'
dest: "dist/foo",
filename: 'index.html',
inject: 'head',
externals: [
{ type: 'js', file: "file1.js", pos: 'before' },
{ type: 'js', file: "file2.js", pos: 'before' }
]
})
]
};
``html
`Hash
You can set string '[hash]' for output file in rollup.config.js, and your bundle and source map (if you turned on
sourcemap option) will have the string '[hash]' be replaced by its hash.
`js
export default {
input: 'src/main.js',
output: {
file: 'dist/foo/bundle-[hash].js',
// Turn on sourcemap
sourcemap: true
},
plugins: [
...
]
};
`
You will find both bundle and map files are hashed and placed in your dist/foo folder:
bundle-76bf4fb5dbbd62f0fa3708aa3d8a9350.js, bundle-84e0f899735b1e320e625c9a5c7c49a7.js.maponlinePath
You can set 'onlinePath' as anything like
//www.sohu.com/ if you want to put the files on CDN after building.`js
{
output: {
file: 'dist/foo/main.js',
},
// ...
plugins: [
html({
dest: "dist/foo",
// ...
onlinePath: '//www.sohu.com/dist/foo'
})
]
}
`and you will get something like:
.Options
You can pass an option to the
html() just like above, and there are some options:- __template__: (required) either path or code string of the template file, template should
be a html file.
- __filename__: optional if 'template' is a path: the name of the result html file, if omitted,
will use name in template as file name.
- __externals__: (optional) a list of files which will be insert into the resule
html. The file should be a valid url.
- externals.__file__: file path.
- externals.__type__: the type of file. can be 'js' or 'css'.
- externals.__pos__: position where the file is inserted.
- externals.__timestamp__: append timestamp as query string to file path.
- __inject__: (optional) indicate where to insert files, it can be 'head' or
'body'. For default, the css files will be inserted into
and the js
files will be inserted into .
- __defaultmode__: (optional) specify a value to use in the script type attribute.
If no mode is specified, the type` attribute is omitted. Externals canMIT