mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 16:33:08 +02:00
19 lines
415 B
TypeScript
19 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
|
|
});
|
|
}
|
|
}
|
|
});
|