mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
import * as fs from 'fs';
|
|
const minify = require('html-minifier').minify;
|
|
|
|
export default () => ({
|
|
enforce: 'pre',
|
|
test: /\.vue$/,
|
|
exclude: /node_modules/,
|
|
loader: 'string-replace-loader',
|
|
query: {
|
|
search: /^<template>([\s\S]+?)\r?\n<\/template>/,
|
|
replace: html => {
|
|
return minify(html, {
|
|
collapseWhitespace: true,
|
|
collapseInlineTagWhitespace: true,
|
|
keepClosingSlash: true
|
|
});
|
|
}
|
|
}
|
|
});
|