-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathgatsby-browser.js
More file actions
19 lines (16 loc) · 1.73 KB
/
gatsby-browser.js
File metadata and controls
19 lines (16 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import "./src/styles/global.css";
export { default as wrapRootElement } from "./src/state/wrap-with-provider";
export const onClientEntry = () => {
console.log(`
██████╗ ██╗███╗ ██╗ ██████╗ ██████╗ █████╗ ██████╗ ██████╗ ██████╗ ██████╗███████╗
██╔══██╗██║████╗ ██║██╔════╝ ██╔════╝██╔══██╗██╔══██╗ ██╔══██╗██╔═══██╗██╔════╝██╔════╝
██████╔╝██║██╔██╗ ██║██║ ███╗██║ ███████║██████╔╝ ██║ ██║██║ ██║██║ ███████╗
██╔═══╝ ██║██║╚██╗██║██║ ██║██║ ██╔══██║██╔═══╝ ██║ ██║██║ ██║██║ ╚════██║
██║ ██║██║ ╚████║╚██████╔╝╚██████╗██║ ██║██║ ██████╔╝╚██████╔╝╚██████╗███████║
╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═════╝ ╚═════╝ ╚═════╝╚══════╝
=====================================
Project : pingcap/website-docs
Env : ${process.env.NODE_ENV}
=====================================
`);
};