mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-30 23:32:38 +00:00
Merge branch 'master' into fix-middleware
This commit is contained in:
commit
9099b00963
@ -7,7 +7,7 @@
|
|||||||
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/v/nuxt.svg" alt="Version"></a>
|
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/v/nuxt.svg" alt="Version"></a>
|
||||||
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/l/nuxt.svg" alt="License"></a>
|
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/l/nuxt.svg" alt="License"></a>
|
||||||
<a href="https://gitter.im/nuxt/nuxt.js"><img src="https://img.shields.io/badge/GITTER-join%20chat-green.svg" alt="Gitter"></a>
|
<a href="https://gitter.im/nuxt/nuxt.js"><img src="https://img.shields.io/badge/GITTER-join%20chat-green.svg" alt="Gitter"></a>
|
||||||
<a href="https://donorbox.org/nuxt"><img src="https://img.shields.io/badge/Support%20us-donate-41B883.svg" alt="Support us"></a>
|
<a href="https://opencollective.com/nuxtjs"><img src="https://img.shields.io/badge/Support%20us-donate-41B883.svg" alt="Support us"></a>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -173,4 +173,4 @@ https://github.com/nuxt/nuxt.js/projects/1
|
|||||||
|
|
||||||
Feel free to make a donation to support us.
|
Feel free to make a donation to support us.
|
||||||
|
|
||||||
<a href="https://donorbox.org/nuxt"><img src="https://img.shields.io/badge/Support%20us-donate-41B883.svg" alt="Support us"></a>
|
<a href="https://opencollective.com/nuxtjs"><img src="https://img.shields.io/badge/Support%20us-donate-41B883.svg" alt="Support us"></a>
|
||||||
|
@ -143,7 +143,7 @@ export default function () {
|
|||||||
return `Route: '${route}' thrown an error: \n` + JSON.stringify(error)
|
return `Route: '${route}' thrown an error: \n` + JSON.stringify(error)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
console.error('==== Error report ==== \n' + report).join('\n\n') // eslint-disable-line no-console
|
console.error('==== Error report ==== \n' + report.join('\n\n')) // eslint-disable-line no-console
|
||||||
}
|
}
|
||||||
return this
|
return this
|
||||||
})
|
})
|
||||||
|
@ -18,7 +18,7 @@ export default function ({ isClient }) {
|
|||||||
'css': styleLoader.call(this, 'css'),
|
'css': styleLoader.call(this, 'css'),
|
||||||
'less': styleLoader.call(this, 'less', 'less-loader'),
|
'less': styleLoader.call(this, 'less', 'less-loader'),
|
||||||
'sass': styleLoader.call(this, 'sass', 'sass-loader?indentedSyntax'),
|
'sass': styleLoader.call(this, 'sass', 'sass-loader?indentedSyntax'),
|
||||||
'scss': styleLoader.call(this, 'sass', 'scss-loader'),
|
'scss': styleLoader.call(this, 'sass', 'sass-loader'),
|
||||||
'stylus': styleLoader.call(this, 'stylus', 'stylus-loader'),
|
'stylus': styleLoader.call(this, 'stylus', 'stylus-loader'),
|
||||||
'styl': styleLoader.call(this, 'stylus', 'stylus-loader')
|
'styl': styleLoader.call(this, 'stylus', 'stylus-loader')
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user