langchain-ai / langchain-template-supabase

MIT License
497 stars 55 forks source link

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

Open rsweetland opened 1 year ago

rsweetland commented 1 year ago

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: {},
};