We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9698310 commit 993bb02Copy full SHA for 993bb02
next.config.mjs
@@ -23,14 +23,23 @@ const config = {
23
images: {
24
domains: [],
25
},
26
- // webpack: (config, { isServer }) => {
27
- // config.optimization.minimize = false;
28
-
29
- // Add source map for better debugging
30
- // config.devtool = 'source-map';
31
32
- // return config;
33
- // },
+ swcMinify: false,
+ webpack: (config) => {
+ config.optimization.minimize = false;
+ return config;
+ },
+ redirects: () => [
+ {
+ source: "/address",
34
+ destination: "/stacks/stacks.js/concepts/accounts-and-addresses",
35
+ permanent: true,
36
37
38
+ source: "/what-is-a-wallet",
39
+ destination: "/stacks/stacks.js/concepts/private-keys",
40
41
42
+ ],
43
};
44
45
/**
0 commit comments