Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Module build failed: Error: No parser and no file path given, couldn't infer a parser in nuxtjs

    Module build failed: Error: No parser and no file path given, couldn't infer a parser.
    at normalize (/home/nayan/dd_pwa/node_modules/prettier/index.js:7051:13)
    at formatWithCursor (/home/nayan/dd_pwa/node_modules/prettier/index.js:10370:12)
    at /home/nayan/dd_pwa/node_modules/prettier/index.js:31115:15
    at Object.format (/home/nayan/dd_pwa/node_modules/prettier/index.js:31134:12)
    at Object.module.exports (/home/nayan/dd_pwa/node_modules/vue-loader/lib/template-compiler/index.js:80:23)

 @ ./layouts/error.vue 7:0-368
 @ ./.nuxt/index.js
 @ ./.nuxt/client.js
 @ multi webpack-hot-middleware/client?name=client&reload=true&timeout=30000&path=/__webpack_hmr ./.nuxt/client.js

I'm having same issue on Nuxtjs. Anyone facing same issue??? Help?!! version: "nuxt": "^1.0.0", "prettier": "^1.12.1"

Tried all the option of downgrading and upgrading prettier version.

like image 268
Hardik Shah Avatar asked May 28 '18 07:05

Hardik Shah


1 Answers

Downgrade prettier package to version 1.12.1 and stick with it:

npm i [email protected] --save-dev --save-exact

like image 155
vvt Avatar answered Sep 22 '22 06:09

vvt