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

165 lines
4.8 KiB
JavaScript
Raw Normal View History

2024-03-21 14:09:55 +00:00
// (c) Copyright Ascensio System SIA 2009-2024
//
2024-03-17 23:13:02 +00:00
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
2024-03-21 14:09:55 +00:00
//
2024-03-17 23:13:02 +00:00
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
2024-03-21 14:09:55 +00:00
//
2024-03-17 23:13:02 +00:00
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
2024-03-21 14:09:55 +00:00
//
2024-03-17 23:13:02 +00:00
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
2024-03-21 14:09:55 +00:00
//
2024-03-17 23:13:02 +00:00
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
2024-03-21 14:09:55 +00:00
//
2024-03-17 23:13:02 +00:00
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
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-02-28 08:25:41 +00:00
const pkg = require("./package.json");
const BannerPlugin = require("webpack").BannerPlugin;
const TerserPlugin = require("terser-webpack-plugin");
const version = pkg.version;
2024-01-09 16:25:50 +00:00
const nextConfig = {
basePath: "/doceditor",
output: "standalone",
compiler: {
styledComponents: true,
},
2024-02-28 08:25:41 +00:00
generateBuildId: async () => {
// This could be anything, using the latest git hash
return `${pkg.name} - ${pkg.version} `;
},
2024-02-22 13:42:20 +00:00
images: {
unoptimized: true,
},
2024-02-07 12:59:08 +00:00
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
2024-01-09 16:25:50 +00:00
logging: {
fetches: {
fullUrl: true,
},
},
};
2024-01-09 07:32:57 +00:00
const getBuildDate = () => {
const timeElapsed = Date.now();
const today = new Date(timeElapsed);
return JSON.stringify(today.toISOString().split(".")[0] + "Z");
};
const getBuildYear = () => {
const timeElapsed = Date.now();
const today = new Date(timeElapsed);
return today.getFullYear();
};
2024-02-01 09:29:00 +00:00
module.exports = {
webpack(config) {
config.devtool = "source-map";
if (config.mode === "production") {
config.optimization = {
splitChunks: { chunks: "all" },
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
format: {
comments: /\*\s*\(c\)\s+Copyright\s+Ascensio\s+System\s+SIA/i,
},
},
extractComments: false,
}),
],
};
config.plugins.push(
new BannerPlugin({
raw: true,
banner: `/*
* (c) Copyright Ascensio System SIA 2009-${getBuildYear()}. All rights reserved
*
* https://www.onlyoffice.com/
*
* Version: ${version} (build: ${getBuildDate()})
*/`,
}),
);
}
2024-02-01 09:29:00 +00:00
// 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
2024-02-22 13:42:20 +00:00
loader: "@svgr/webpack",
options: {
prettier: false,
svgo: true,
svgoConfig: {
plugins: [
{
name: "preset-default",
params: {
overrides: { removeViewBox: false },
},
},
],
},
titleProp: true,
},
2024-02-01 09:29:00 +00:00
},
);
// Modify the file loader rule to ignore *.svg, since we have it handled now.
fileLoaderRule.exclude = /\.svg$/i;
return config;
},
...nextConfig,
};
2024-03-21 14:09:55 +00:00