13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
transpilePackages: ['swagger-ui-react'],
|
|
webpack: (config) => {
|
|
config.module.rules.push({
|
|
test: /\.css$/,
|
|
use: ['style-loader', 'css-loader'],
|
|
});
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|