-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathnext.config.js
33 lines (31 loc) · 937 Bytes
/
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
compiler: {
// see https://styled-components.com/docs/tooling#babel-plugin for more info on the options.
styledComponents: {
// Enabled by default in development, disabled in production to reduce file size,
// setting this will override the default for all environments.
displayName: true,
// Enabled by default.
ssr: true,
// Enabled by default.
fileName: true,
// Empty by default.
topLevelImportPaths: [],
// Defaults to ["index"].
meaninglessFileNames: ["index"],
// Enabled by default.
cssProp: true,
// Empty by default.
namespace: "",
// Not supported yet.
minify: false,
// Not supported yet.
transpileTemplateLiterals: false,
// Not supported yet.
pure: false,
},
},
}
module.exports = nextConfig