diff options
| author | Pitu <[email protected]> | 2021-03-23 22:35:36 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-03-23 22:35:36 +0900 |
| commit | c8456954b2e8541a8844579079e1db2cac141f67 (patch) | |
| tree | 9e47a6782ef738766e359b334dbbdb0eace77123 | |
| parent | wip (diff) | |
| download | host.fuwn.me-c8456954b2e8541a8844579079e1db2cac141f67.tar.xz host.fuwn.me-c8456954b2e8541a8844579079e1db2cac141f67.zip | |
fix: proper source maps
| -rw-r--r-- | nuxt.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 278ea1a..09e5a73 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -90,7 +90,7 @@ export default { jetpack.write('dist/config.json', clientConfig); } if (isDev) { - config.devtool = isClient ? 'source-map' : 'inline-source-map'; + config.devtool = 'source-map'; } } } |