-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
blitz.config.js
184 lines (170 loc) · 5.39 KB
/
blitz.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
const fs = require("fs")
const path = require("path")
const querystring = require("querystring")
const {createLoader} = require("simple-functional-loader")
const matter = require("gray-matter")
const {withTableOfContents} = require("./remark/withTableOfContents")
const {withSyntaxHighlighting} = require("./remark/withSyntaxHighlighting")
const {withProse} = require("./remark/withProse")
const {withBlitzLinks} = require("./remark/withBlitzLinks")
const minimatch = require("minimatch")
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
})
const fallbackDefaultExports = {
// Have to use compiled locations
"pages/docs/**/*": ["app/core/layouts/DocumentationLayout", "DocumentationLayout"],
}
module.exports = withBundleAnalyzer({
pageExtensions: ["js", "jsx", "mdx"],
images: {
domains: [
"raw.githubusercontent.com",
"avatars.githubusercontent.com",
"avatars0.githubusercontent.com",
"avatars1.githubusercontent.com",
"avatars2.githubusercontent.com",
"avatars3.githubusercontent.com",
"avatars4.githubusercontent.com",
"avatars5.githubusercontent.com",
"avatars6.githubusercontent.com",
"media-exp1.licdn.com",
],
},
async redirects() {
return [
{
source: "/docs/getting-started",
destination: "/docs/get-started",
permanent: false,
},
{
source: "/joinmeetup",
destination: "https://us02web.zoom.us/j/85901497017?pwd=eVo4YlhsU2E3UHQvUmgxTmtRUDBIZz09",
permanent: false,
},
]
},
async rewrites() {
return [
{
source: "/stickers",
destination: "/docs/stickers",
},
]
},
webpack(config, options) {
if (!options.dev) {
options.defaultLoaders.babel.options.cache = false
}
config.module.rules.push({
test: /\.(png|jpe?g|gif|webp)$/i,
use: [
{
loader: "file-loader",
options: {
publicPath: "/_next",
name: "static/media/[name].[hash].[ext]",
},
},
],
})
config.module.rules.push({
test: /\.svg$/,
use: [
{loader: "@svgr/webpack", options: {svgoConfig: {plugins: {removeViewBox: false}}}},
{
loader: "file-loader",
options: {
publicPath: "/_next",
name: "static/media/[name].[hash].[ext]",
},
},
],
})
config.module.rules.push({
test: /\.mdx$/,
use: [
options.defaultLoaders.babel,
createLoader(function (source) {
if (source.includes("/*START_META*/")) {
const [meta] = source.match(/\/\*START_META\*\/(.*?)\/\*END_META\*\//s)
return "export default " + meta
}
return (
source.replace(/export const/gs, "const") + `\nMDXContent.layoutProps = layoutProps\n`
)
}),
{
loader: "@mdx-js/loader",
options: {
remarkPlugins: [withProse, withTableOfContents, withSyntaxHighlighting, withBlitzLinks],
},
},
createLoader(function (source) {
let {meta: fields} = querystring.parse(this.resourceQuery.substr(1))
let {data: meta, content: body} = matter(source)
if (fields) {
for (let field in meta) {
if (!fields.split(",").includes(field)) {
delete meta[field]
}
}
}
let extra = []
let resourcePath = path.relative(process.cwd(), this.resourcePath)
if (!/^\s*export\s+default\s+/m.test(source.replace(/```(.*?)```/gs, ""))) {
for (let glob in fallbackDefaultExports) {
if (minimatch(resourcePath, glob)) {
extra.push(
`import { ${fallbackDefaultExports[glob][1]} as _Default } from '${fallbackDefaultExports[glob][0]}'`,
"export default _Default",
)
break
}
}
}
if (/^<\/Card>$/m.test(source)) {
extra.push(`import { Card } from '@/components/docs/Card'`)
}
return [
...(typeof fields === "undefined" ? extra : []),
typeof fields === "undefined" ? body : "",
typeof fields === "undefined"
? `export const meta = ${JSON.stringify(meta)}`
: `export const meta = /*START_META*/${JSON.stringify(meta || {})}/*END_META*/`,
].join("\n\n")
}),
],
})
config.module.rules.push({
test: /navs\/documentation\.json$/,
use: [
createLoader(function (source) {
const documentation = JSON.parse(source)
let finalDocumentation = []
for (const category of documentation) {
let pages = []
for (const page of category.pages) {
const pageFile = fs.readFileSync(
path.resolve(process.cwd(), "pages", "docs", `${page}.mdx`),
{encoding: "utf-8"},
)
const {data} = matter(pageFile)
pages.push({
...data,
href: `/docs/${page}`,
})
}
finalDocumentation.push({
...category,
pages,
})
}
return JSON.stringify(finalDocumentation)
}),
],
})
return config
},
})