🔥 purgecss 压缩 css

This commit is contained in:
崮生 2020-03-21 16:46:45 +08:00
parent 60b56b5853
commit 3db5eb01ee
9 changed files with 10401 additions and 34 deletions

View File

@ -23,6 +23,7 @@
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@fullhuman/postcss-purgecss": "^2.1.0",
"@nestjs/common": "^6.7.2",
"@nestjs/core": "^6.7.2",
"@nestjs/platform-express": "^6.7.2",

20
postcss.config.js Normal file
View File

@ -0,0 +1,20 @@
const tailwindcss = require('tailwindcss');
const purgecss = require('@fullhuman/postcss-purgecss')({
// Specify the paths to all of the template files in your project
content: [
'./static/**/*.svelte',
'./static/**/*.js',
'./static/**/*.ts',
// etc.
],
// Include any special characters you're using in this regular expression
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || [],
});
module.exports = {
plugins: [
tailwindcss,
...(process.env.NODE_ENV === 'development' ? [] : [purgecss]),
],
};

View File

@ -48,15 +48,6 @@
}
</script>
<style>
.c-label {
@apply border m-1 rounded-md px-1 items-center h-6 text-sm;
}
.c-label-selected {
@apply bg-red-600 text-white;
}
</style>
{#each font_list as font, i}
{@html "<style>"+font.css+'.'+font.name+"{font-family:"+font.family+"}</style>"}
{/each}

7
static/app.css Normal file
View File

@ -0,0 +1,7 @@
.c-label {
@apply border m-1 rounded-md px-1 items-center h-6 text-sm;
}
.c-label-selected {
@apply bg-red-600 text-white;
}

View File

@ -1,6 +1,6 @@
// import '@babel/polyfill';
import App from './App.svelte';
import "./app.css";
new App({
target: document.querySelector('.c-app'),
});

View File

@ -1,5 +0,0 @@
const tailwindcss = require("tailwindcss");
module.exports = {
plugins: [tailwindcss],
};

View File

@ -1,19 +0,0 @@
module.exports = {
theme: {
extend: {
textColor: {
"rgb-999": "#999",
"rgb-666": "#666",
"rgb-333": "#333",
},
backgroundColor: {
"rgb-F5": "#F5F5F5",
},
placeholderColor: {
"rgb-B3": "#B3B3B3",
},
},
},
variants: {},
plugins: [],
};

6
tailwind.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
theme: {
},
variants: {},
plugins: [],
};

10366
yarn.lock Normal file

File diff suppressed because it is too large Load Diff