Удалить файл резервирования после сборки - vue cli - PullRequest
0 голосов
/ 05 февраля 2020

Изображение здесь:

https://i.stack.imgur.com/fWiu2.png

https://i.stack.imgur.com/FUWEP.png

chatIndex~friendIndex~homePage~jobIndex.chatIndex~friendIndex~homePage~jobIndex.98e6a4df.js

chatIndex~friendIndex~homePage~jobIndex~linkAccount~login~register~registerSocial~resetPasswordByEma~8af2c770.chatIndex~friendIndex~homePage~jobIndex~linkAccount~login~register~registerSocial~resetPasswordByEma~8af2c770.0d74a825.js

Не могли бы вы сказать мне, что эти файлы после сборки? это файл резервирования? как мы можем удалить его?

это мой vue .config. js file

const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const CompressionPlugin = require('compression-webpack-plugin');

const webpack = require('webpack');

const plugins = [new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /en|vi/)];

if (process.env.NODE_ENV !== 'production') {
  plugins.push(new BundleAnalyzerPlugin());
}

module.exports = {
  productionSourceMap: false,
  configureWebpack: {
    plugins,
    performance: {
      maxEntrypointSize: 512000,
      maxAssetSize: 512000,
    },
  },
  chainWebpack(config) {
    config.plugins.delete('prefetch');
    config.plugin('CompressionPlugin').use(CompressionPlugin);
  },
};

...