5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vue-cliのsourcemapをprodcutionでoffにしたいメモ

Posted at

productionは vue-cli-service build を使う

vue-cli-service build のdefault modeはproduction なのでつけてもつけなくてもどっちでもいい(ただし NODE_ENV は書き換えないように)

Ref

vue.config.jsproductionSourceMap を追加する

下記のような設定を追加する。

module.exports = {
    productionSourceMap: process.env.NODE_ENV === 'production' ? false : true,
}

VUE_CLI_SERVICE_CONFIG_PATH='$(pwd)/vue.config.prod.js' のように環境変数をつかって、configを切り替えるようなことはしてはいけない

Ref

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?