-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
71 lines (64 loc) · 1.68 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
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
const path = require('path');
/** @type {import('next').NextConfig} */
const nextConfig = {
// Change this to be relative to the config file
distDir: 'out', // Changed from '../out' to 'out'
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
swcMinify: true,
images: {
unoptimized: true,
},
transpilePackages: ['monaco-editor'],
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.alias = {
...config.resolve.alias,
'monaco-editor': path.join(__dirname, 'node_modules/monaco-editor/esm/vs/editor/editor.api.js')
};
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
path: false
};
}
// Rest of your webpack config...
const rules = config.module.rules
.find((rule) => typeof rule.oneOf === 'object')
.oneOf.filter((rule) => Array.isArray(rule.use));
rules.forEach((rule) => {
rule.use.forEach((moduleLoader) => {
if (
moduleLoader.loader !== undefined &&
moduleLoader.loader.includes('css-loader') &&
typeof moduleLoader.options.modules === 'object'
) {
moduleLoader.options.modules.mode = 'global';
}
});
});
config.module.rules.push({
test: /\.css$/,
use: [
'style-loader',
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
'tailwindcss',
'autoprefixer',
],
},
},
},
],
});
return config;
},
output: "export"
};
module.exports = nextConfig;