Error Messages:
chunk common [mini-css-extract-plugin] Conflicting order between: css ./node_modules/css-loader/dist/cjs.js??ref–2-oneOf-0-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@tarojs/mini-runner/node_modules/postcss-loader/dist/cjs.js??ref–2-oneOf-0-2!./node_modules/@tarojs/mini-runner/node_modules/less-loader/dist/cjs.js??ref–2-oneOf-0-3!./node_modules/vue-loader/lib??vue-loader-options!./src/components/place-holder/index.vue?vue&type=style&index=0&lang=less&css ./node_modules/css-loader/dist/cjs.js??ref–2-oneOf-0-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@tarojs/mini-runner/node_modules/postcss-loader/dist/cjs.js??ref–2-oneOf-0-2!./node_modules/@tarojs/mini-runner/node_modules/less-loader/dist/cjs.js??ref–2-oneOf-0-3!./node_modules/vue-loader/lib??vue-loader-options!./src/components/popup-scroll/index.vue?vue&type=style&index=0&lang=less&
Solution: It took a long time to find out that it was caused by the wrong order of introduction of components in a file, the pit.
Error example
<template>
<view>
<B/>
<A/>
</view>
</template>
<script>
import A from "./components/a";
import B from "../components/b";
</script>
Correct example
<template>
<view>
<B/>
<A/>
</view>
</template>
<script>
import B from "../components/b";
import A from "./components/a";
</script>
Read More:
- Taro Install Error: permission denied, symlink ‘../lib/node_modules/@tarojs/cli/bin/taro‘ -> ‘/usr/local/bin/tar
- Taro Use React Hooks Error: TypeError: Object(…) is not a function
- [Solved] Net.exe: ‘Error: A command was used with conflicting switches.’ while using /savecred?
- Android r compiles OTA times error: ExternalError: Invalid ro.product.property_source_order
- [Solved] kubeflow pipeline visualization component Error: WARNING: Running pip as the ‘root’ user can result in broken permissions and conflicting behaviour with the system package manager…
- [Solved] Android Studio APK install Error: INSTALL_FAILED_CONFLICTING_PROVIDER
- Common problems and solutions for CheckStyle errors
- [Solved] Failed to resolve: com.serenegiant:common:1.5.20
- How to Fix Common Arcpy Error
- How to Fix the common Warning Errors after Vue Project Startup
- [Solved] selenium.common.exceptions.WebDriverException: Message: An unknown server-side error
- Appium Top 10 Common Error [How to Solve]
- Vue require Error: node_modules/babel-loader/lib
- [Solved] Caused by: java.lang.ClassNotFoundException: org.apache.flink.api.common.typeinfo.TypeInformation
- [Elasticsearch Exception]Found interface org.elasticsearch.common.bytes.BytesReference
- [Solved] @webservice Error: org.apache.cxf.common.i18n.UncheckedException: No operation was found with
- [Solved] Hive Warehouse error: com.google.common.base.Preconditions.checkArgument
- [Solved] NTP Sync common error: no server suitable for synchrnization found
- How to Solve jmeter Install Error (Three Common Errors)
- [Solved] flink Write Files Error: lang.NoClassDefFoundError: org/apache/flink/api/common/typeinfo/TypeInformation