Giter Site home page Giter Site logo

Comments (5)

kobeindemans avatar kobeindemans commented on September 22, 2024 3

I have the same issue (using tailwind in my Next.js app)

from next-payload.

okeken avatar okeken commented on September 22, 2024 2

What I endup doing is creating a simple script to automatically remove this line after every installs,

removeSassError.js

const fs = require('fs');
const path = require('path');

const filePath = path.join(__dirname, 'node_modules', 'payload', 'dist', 'admin', 'scss', 'app.scss');

fs.readFile(filePath, 'utf8', (err, data) => {
  if (err) {
    console.error('Error reading the file:', err);
    return;
  }

  const lines = data.trim().split('\n');

  if (lines[lines.length - 1].includes('@import \'~payload-user-css\';')) {
    // Remove the last line
    lines.pop();

    const modifiedContent = lines.join('\n');

    fs.writeFile(filePath, modifiedContent, 'utf8', (err) => {
      if (err) {
        console.error('Error writing to the file:', err);
        return;
      }
      console.log('Last line removed successfully!');
    });
  } else {
    console.log('Last line does not contain the import, no action needed.');
  }
});


inside my package.json

 "scripts": {
    "postinstall": "yarn removeError",
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint",
    "removeError": "node removeSassError.js"
  },

from next-payload.

lufehr avatar lufehr commented on September 22, 2024 2

@joelcorey @kobeindemans have you tried to remove the following line from next.config.js if you haven't a custom css file present?

    // Point to custom Payload CSS (optional)
    cssPath: path.resolve(__dirname, "./css/my-custom-payload-styles.css"),

from next-payload.

JarrodMFlesch avatar JarrodMFlesch commented on September 22, 2024

@joelcorey are you getting this on the latest version? I am unable to reproduce, but would love to help if you can provide a bit more info!

from next-payload.

JarrodMFlesch avatar JarrodMFlesch commented on September 22, 2024

@joelcorey @kobeindemans have you tried to remove the following line from next.config.js if you haven't a custom css file present?

    // Point to custom Payload CSS (optional)
    cssPath: path.resolve(__dirname, "./css/my-custom-payload-styles.css"),

Yes this is the issue, you need to remove this line. The next release will log a warning and prevent the app from breaking, though.

from next-payload.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.