mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: mourn
This commit is contained in:
parent
64e77f3d2a
commit
0346ecd96a
1
docs/site/desktop.js
Normal file
1
docs/site/desktop.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
import './mourn';
|
@ -1,3 +1,4 @@
|
|||||||
|
import './mourn';
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import Locale from '../../src/locale';
|
import Locale from '../../src/locale';
|
||||||
import Lazyload from '../../src/lazyload';
|
import Lazyload from '../../src/lazyload';
|
||||||
|
12
docs/site/mourn.js
Normal file
12
docs/site/mourn.js
Normal 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>`);
|
||||||
|
}
|
@ -1,10 +1,11 @@
|
|||||||
module.exports = function() {
|
module.exports = function () {
|
||||||
if (process.env.BUILD_TARGET === 'package') {
|
if (process.env.BUILD_TARGET === 'package') {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
entry: {
|
entry: {
|
||||||
|
'site-desktop': ['./docs/site/desktop'],
|
||||||
'site-mobile': ['./docs/site/mobile'],
|
'site-mobile': ['./docs/site/mobile'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user