forked from neoito-hub/online-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
41 lines (41 loc) · 1.1 KB
/
next.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
const withCSS = require("@zeit/next-css");
module.exports = withCSS({
/* config options here */
exportPathMap: function () {
return {
"/": { page: "/string-to-hex" },
"/hex-to-string": {
page: "/hex-to-string",
query: { title: "Hex to String" },
},
"/polygon-vertex": {
page: "/polygon-vertex",
query: { title: "Polygon vertex calculator" },
},
"/password-checker": {
page: "/password-checker",
query: { title: "Password Checker" },
},
"/string-to-hex": {
page: "/string-to-hex",
query: { title: "String to hex" },
},
"/string-to-morse": {
page: "/string-to-morse",
query: { title: "String to Morse encoder" },
},
"/interval-timer": {
page: "/interval-timer",
query: { title: "A Timer to take a break" },
},
"/deep-clean-object": {
page: "/deep-clean-object",
query: { title: "Deep Clean Object" },
},
"/stop-watch": {
page: "/stop-watch",
query: { title: "Stop Watch" },
},
};
},
});