docs: mourn

This commit is contained in:
chenjiahan 2020-04-04 23:26:44 +08:00
parent 64e77f3d2a
commit 0346ecd96a
4 changed files with 16 additions and 1 deletions

1
docs/site/desktop.js Normal file
View File

@ -0,0 +1 @@
import './mourn';

View File

@ -1,3 +1,4 @@
import './mourn';
import Vue from 'vue';
import Locale from '../../src/locale';
import Lazyload from '../../src/lazyload';

12
docs/site/mourn.js Normal file
View File

@ -0,0 +1,12 @@
const now = new Date();
if (now.getFullYear() === 2020 && now.getMonth() === 3 && now.getDate() === 4) {
const filter = `
html{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
}
`;
document.head.insertAdjacentHTML('beforeend', `<style>${filter}</style>`);
}

View File

@ -1,10 +1,11 @@
module.exports = function() {
module.exports = function () {
if (process.env.BUILD_TARGET === 'package') {
return {};
}
return {
entry: {
'site-desktop': ['./docs/site/desktop'],
'site-mobile': ['./docs/site/mobile'],
},
};