langchain-template-supabase icon indicating copy to clipboard operation
langchain-template-supabase copied to clipboard

TypeError: Cannot read properties of undefined (reading 'config')

Open rsweetland opened this issue 2 years ago • 0 comments

Got this error on fresh install...

error - ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[1].oneOf[13].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[1].oneOf[13].use[2]!./src/styles/globals.css
TypeError: Cannot read properties of undefined (reading 'config')
Import trace for requested module:
./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[1].oneOf[13].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[1].oneOf[13].use[2]!./src/styles/globals.css
./src/styles/globals.css

Fixed by creating this postcss.config.js in project root

module.exports = {
  plugins: {},
};

rsweetland avatar Apr 29 '23 03:04 rsweetland