javascript - 如何在 next.config.js 文件中组合几个插件?

标签 javascript webpack next.js

当我添加 "next-videos" loadernext.config.js 只要 module.exports 进入最后一个,它就可以完美运行:

module.exports = withVideos()

另一方面,它破坏了位于上面的另一个 module.exports 实例:

module.exports = {
   images: {
     domains: ['cdn.shopify.com'],
   },
};

基本上,它会覆盖之前的每个 module.exports。合并这些导出的规则是什么?我想我需要将它们放在一个模块下,但是这样做的规则是什么?我搞砸了语法,每次尝试将其重新定位在一个 module.exports 下都会以新错误结束

只是总结一下问题:

  1. 在单个导出中组合模块的规则是什么以及如何将它与我以前的所有 module.exports 组合?

  2. 我真的需要在 next.config 中保留与上面相同部分重复的“webpack(config)”部分吗?我从不同的来源收集了它,现在试图弄清楚如何真的有用吗

webpack(config) { 
  config.module.rules.push(

内容 next.config.js:

const withPlugins = require('next-compose-plugins');
const withSass = require('@zeit/next-sass');
const withCSS = require('@zeit/next-css');
const withImages = require('next-images');
const withVideos = require('next-videos');
const withBundleAnalyzer = require('@next/bundle-analyzer')({
    enabled: process.env.ANALYZE === 'true',
});

// next.config.js
module.exports = withPlugins(
    [[withImages], [withSass], [withCSS], [withVideos]],
    {
        plugins: ['postcss-import', 'tailwindcss', 'autoprefixer'],
        serverRuntimeConfig: {
            mySecret: 'secret',
            secondSecret: process.env.SECOND_SECRET, // Pass through env variables
        },
        publicRuntimeConfig: {
            // Will be available on both server and client
            staticFolder: '/public',
        },
        module: {
            loaders: [
                {
                    test: /.jsx?$/,
                    loader: 'babel-loader',
                    exclude: /node_modules/,
                },
                {
                    test: /\.css$/,
                    loader: 'style-loader!css-loader',
                },
                {
                    test: /\.jsx?$/,
                    use: ['babel-loader', 'astroturf/loader'],
                },
                {
                    test: /\.(jpe?g|png|gif|woff|woff2|eot|ttf|svg)(\?[a-z0-9=.]+)?$/,
                    loader: 'url-loader?limit=100000',
                },
                {
                    test: /\.(eot|woff|woff2|otf|ttf|svg|png|jpg|gif|webm)$/,
                    use: {
                        loader: 'url-loader',
                        options: {
                            limit: 100000,
                            name: '[name].[ext]',
                        },
                    },
                },
                {
                    test: /\.mp4$/,
                    use: 'file-loader?name=videos/[name].[ext]',
                },
                {
                    test: /\.style.js$/,
                    use: [
                        'style-loader',
                        {
                            loader: 'css-loader',
                            options: { importLoaders: 1 },
                        },
                        {
                            loader: 'postcss-loader',
                            options: { parser: 'sugarss', exec: true },
                        },
                    ],
                },
            ],
        },
        webpack(config) {
            config.module.rules.push(
                {
                    test: /\.(eot|woff|woff2|otf|ttf|svg|png|jpg|gif)$/,
                    use: {
                        loader: 'url-loader',
                        options: {
                            limit: 100000,
                            name: '[name].[ext]',
                        },
                    },
                },
                {
                    test: /\.style.js$/,
                    use: [
                        'style-loader',
                        'css-loader',
                        {
                            loader: 'css-loader',
                            options: { importLoaders: 1 },
                        },
                        {
                            loader: 'postcss-loader',
                            options: { parser: 'sugarss', exec: true },
                        },
                    ],
                },
                {
                    test: /\.(js|jsx)$/,
                    exclude: /node_modules/,
                    use: ['babel-loader', 'eslint-loader'],
                },
            );
            withBundleAnalyzer({});
            return config;
        },
    },
    {
        images: {
            domains: ['cdn.shopify.com'],
        },
    },
    withVideos(),
);

module.exports = {
    extends: 'airbnb-base',
    rules: {
        'arrow-body-style': 0,
    },
};

module.exports = {
    images: {
        domains: ['cdn.shopify.com'],
    },
};

module.exports = withVideos();

最佳答案

您似乎错误地将多个配置混合到 Next.js 配置文件中。

没有 next-compose-plugins

没有必要使用 next-compose-plugins。 Next.js 插件被构建为可链接的,您可以将每个插件调用嵌套在下一个调用中,并在最后一次调用时传递实际的配置对象。您的 next.config.js 文件也应该只有一个 module.exports

// next.config.js

// Omitting requires for simplicity
 
module.exports = withImages(
    withSass(
        withCSS(
            withVideos(
                withBundleAnalyzer({
                    images: {
                        domains: ['cdn.shopify.com']
                    },
                    serverRuntimeConfig: {
                        mySecret: "secret",
                        secondSecret: process.env.SECOND_SECRET
                    },
                    publicRuntimeConfig: {
                        staticFolder: "/public"
                    },
                    // From here everything that's Webpack-related
                    webpack(config) {
                        // Add your custom Webpack configs
                        return config;
                    }
                })
            )
        )
    )
);

使用 next-compose-plugins

如果您使用 next-compose-plugins ,它应该大致遵循这样的结构:

// next.config.js

// Omitting requires for simplicity
 
module.exports = withPlugins(
    [withImages, withSass, withCSS, withVideos, withBundleAnalyzer], // All next plugins go here
    // Below is the main Next.js config object
    { 
        images: {
            domains: ['cdn.shopify.com']
        },
        serverRuntimeConfig: {
            mySecret: "secret",
            secondSecret: process.env.SECOND_SECRET
        },
        publicRuntimeConfig: {
          staticFolder: "/public"
        },
        // From here everything that's Webpack-related
        webpack(config) {
            // Add your custom Webpack configs
            return config;
        }
    }
);

最后,下面的配置属于你的 ESlint 配置文件,而不是 Next.js 配置。

// .eslintrc.js
module.exports = {
    extends: 'airbnb-base',
    rules: {
        'arrow-body-style': 0,
    },
};

关于javascript - 如何在 next.config.js 文件中组合几个插件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65604469/

相关文章:

javascript - 在 jquery 中缓存 : Which is better? $ 或没有 $

javascript - 无法在 React 组件中导入 ES6 模块

reactjs - 如何在 typescript 中正确输入简单的 useReducer 和 Context-api

reactjs - @urql/exchange-auth 不在 header 中发送 token

javascript - 根据功能选择特定的 onchange 事件

javascript - 选择文件夹而不是单个文件 - 输入

javascript - 如何从 Cloud Firestore 数据库中获取特定字段数据?

node.js - 如何使用 node.js 从服务器端刷新浏览器?

webpack - Vue 不是构造函数

javascript - redux 如何与 next.js 配合使用?