-
-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rule can only have one resource source #1025
Comments
I was having the same issues. Its not an official fix, but here is how you can fix it. You must downgrade webpack to v4 and postcss to v7. "devDependencies": {
"webpack": "^4.46.0",
"postcss": "^7.0.32",
"postcss-import": "^12.0.1",
"postcss-import-resolver": "^2.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0"
} Next, if you have the following warning:
Set build: {
postcss: null,
}, |
Hi, I have the same problem, but there's none of these libraries: My project setup: create-nuxt-app v5.0.0 ` |
They are nested/referenced libraries. Overwriting them "fix" the issue. |
Version
create-nuxt-app: v.5.0.0
node: v16.19.0
npm: v8.19.3
Steps to reproduce
npx create-nuxt-app test-nuxt
npm run dev
What is Expected?
It is expected that
npm run dev
runs the application without errors after a clean creation.What is actually happening?
The text was updated successfully, but these errors were encountered: