0👍
✅
Solved this bug,
One of the components contained lang typescript where as ionic system is using javascript.
SignIn Component:
<script lang="ts">
//logic
</script>
I just removed lang and ionic compiled files properly.
Earlier versions didn’t track this error.I recently upgraded ionic version to 6.17.1.
0👍
Looking at the error log, which say:
You may need an appropriate loader to handle this file type.
You need to add vue-loader to your webpack configuration. You can find an example of such an integration here:
https://github.com/vuejs-templates/webpack-simple
Someone said here "You may need an appropiate loader to handle this file type" webpack and vue that he solved the problem by downgrading vue-loader using:
npm install vue-loader@14 --save-dev.
Apparently v15 has some issues.
I suggest you to look in this posts:
- Error: "You may need an additional loader to handle the result of these loaders."
- "You may need an appropiate loader to handle this file type" webpack and vue
- Vue Render HTML – You may need an additional loader to handle the result of these loaders
- Vue – You may need an additional loader to handle the result of these loaders
Source:stackexchange.com