Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Embed javascript and css source inline when using the webpack dev server or middleware

License

NotificationsYou must be signed in to change notification settings

DustinJackson/html-webpack-inline-source-plugin

Repository files navigation

see:https://github.com/icelam/html-inline-script-webpack-plugin

Inline Source extension for the HTML Webpack Plugin

npm versionBuild statusjs-semistandard-style

Enhanceshtml-webpack-pluginfunctionality by adding the{inlineSource: 'regex string'} option.

This is an extension plugin for thewebpack pluginhtml-webpack-plugin (version 4 or higher). It allows you to embed javascript and css source inline.

Installation

You must be running webpack on node 6 or higher.

Install the plugin with npm:

$ npm install --save-dev html-webpack-inline-source-plugin

Basic Usage

Require the plugin in your webpack config:

varHtmlWebpackInlineSourcePlugin=require('html-webpack-inline-source-plugin');

Add the plugin to your webpack config as follows:

plugins:[newHtmlWebpackPlugin(),newHtmlWebpackInlineSourcePlugin()]

The above configuration will actually do nothing due to the configuration defaults.

When you setinlineSource to a regular expression the source code for any javascript or css file names that match will be embedded inline in the resulting html document.

plugins:[newHtmlWebpackPlugin({inlineSource:'.(js|css)$'// embed all javascript and css inline}),newHtmlWebpackInlineSourcePlugin()]

Sourcemaps

If any source files contain a sourceMappingURL directive that isn't a data URI, then the sourcemap URL is corrected to be relative to the domain root (unless it already is) instead of to the original source file.

All sourcemap comment styles are supported:

  • //# ...
  • //@ ...
  • /*# ...*/
  • /*@ ...*/

About

Embed javascript and css source inline when using the webpack dev server or middleware

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors13


[8]ページ先頭

©2009-2025 Movatter.jp