You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 6, 2023. It is now read-only.
Allow you to directly manipulate the clean-css
API. The
configuration object will be passed as is.
options.files
Type: string
Default: **/*.css
This option defines which files are concerned by the minification. This
string is directly passed to
minimatch. Each file matching the
pattern will be minified in place using
clean-css.
options.sourceMap
Type: boolean
Default: false
Whether the source maps should be kept after the minification. You can force
to inline the source maps (without creating an extra .map file in the
build) by setting options.sourceMapInlineSources to true.
This plugin supports the forwarding of existing source maps, it will first
look for a sourceMap property on the file, then for .map file, and
finally fallback to inline source maps.
options.sourceMapInlineSources
Type: boolean
Default: false
Whether the source maps should be inlined in each CSS file. If set to true
the source maps will be inlined in each file, and no extra .map file will
be generated.