12
Jun 2019
by
小川 岳史
IntelliJ IDEA で Nuxt.js のデバッグを行う場合、以下の 1 行を nuxt.config.js に追加する必要があります。
build: {
extend(config, ctx) {
// この 1 行を追加
config.devtool = ctx.isClient ? 'eval-source-map' : 'inline-source-map'
}
},詳しくはこちら。
https://medium.com/@fernalvarez/nuxt-js-debugging-for-webstorm-9b4ef5415a5
