next.js/examples/with-compiled-css/next.config.js
next.config.js12 lines214 B
/** @type {import('next').NextConfig} */
module.exports = {
  webpack: (config) => {
    config.module.rules.push({
      test: /\.js$/,
      use: ["@compiled/webpack-loader"],
    });

    return config;
  },
};
Quest for Codev2.0.0
/
SIGN IN