DocSpace-client/packages/doceditor/next.config.js

58 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-01-09 07:32:57 +00:00
/** @type {import('next').NextConfig} */
2024-02-02 15:41:50 +00:00
const path = require("path");
2024-01-09 16:25:50 +00:00
const nextConfig = {
basePath: "/doceditor",
compiler: {
styledComponents: true,
},
2024-01-09 16:25:50 +00:00
logging: {
fetches: {
fullUrl: true,
},
},
};
2024-01-09 07:32:57 +00:00
2024-02-01 09:29:00 +00:00
module.exports = {
webpack(config) {
// Grab the existing rule that handles SVG imports
const fileLoaderRule = config.module.rules.find((rule) =>
rule.test?.test?.(".svg"),
);
const imageRule = config.module.rules.find(
(rule) => rule.loader === "next-image-loader",
);
imageRule.resourceQuery = {
not: [...fileLoaderRule.resourceQuery.not, /url/],
};
2024-02-01 09:29:00 +00:00
config.module.rules.push(
// Reapply the existing rule, but only for svg imports ending in ?url
{
2024-02-02 07:54:30 +00:00
type: "asset/resource",
generator: {
emit: false,
filename: "static/chunks/[path][name][ext]?[hash]",
2024-02-02 07:54:30 +00:00
},
test: /\.(svg|png|jpe?g|gif|ico|woff2)$/i,
2024-02-01 09:29:00 +00:00
resourceQuery: /url/, // *.svg?url
},
// Convert all other *.svg imports to React components
{
test: /\.svg$/i,
issuer: fileLoaderRule.issuer,
resourceQuery: { not: [...fileLoaderRule.resourceQuery.not, /url/] }, // exclude if *.svg?url
use: ["@svgr/webpack"],
},
);
// Modify the file loader rule to ignore *.svg, since we have it handled now.
fileLoaderRule.exclude = /\.svg$/i;
return config;
},
...nextConfig,
};