10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
|
|
// next.config.js
|
|
const semi = require('@douyinfe/semi-next').default({
|
|
/* the extension options */
|
|
});
|
|
module.exports = semi({
|
|
// your custom Next.js configuration
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
}); |