gpt4 book ai didi

javascript - 以在新构建上传时不需要清除缓存的方式实现缓存

转载 作者:行者123 更新时间:2023-11-29 23:21:15 25 4
gpt4 key购买 nike

我使用 webpack 在 Angular 2 上开发了我的项目。每当我部署新版本时,客户端都需要清除缓存,以便查看代码所做的更改。下面是我的 webpack.config.js:

const path = require('path');
const webpack = require('webpack');
const typescript = require('typescript');
const { AotPlugin } = require('@ngtools/webpack');

const rules = [
{ test: /\.html$/, loader: 'html-loader' },
{ test: /\.scss$/, loaders: ['raw-loader', 'sass-loader'] },
{ test: /\.(jpe?g|png|gif|svg)$/i, loader: 'file-loader' }
];

const plugins = [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: (module) => module.context && /node_modules/.test(module.context)
})
];


rules.push({
test: /\.ts$/,
loaders: [
'awesome-typescript-loader', 'angular-router-loader', 'angular2-template-loader'
]
});

plugins.push(
new webpack.NamedModulesPlugin(),
new webpack.ContextReplacementPlugin(/angular(\\|\/)core(\\|\/)@angular/, path.resolve(__dirname, './notfound')),
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
beautify: false,
mangle: {
screw_ie8: true
},
compress: {
unused: true,
dead_code: true,
drop_debugger: true,
conditionals: true,
evaluate: true,
drop_console: true,
sequences: true,
booleans: true,
screw_ie8: true,
warnings: false
},
comments: false
})
);


module.exports = {
cache: true,
context: __dirname,
devServer: {
contentBase: __dirname,
historyApiFallback: true,
stats: {
chunks: true,
chunkModules: true,
chunkOrigins: true,
errors: true,
errorDetails: true,
hash: true,
timings: true,
modules: true,
warnings: true
},
publicPath: './build/',
port: 3000
},
devtool: 'sourcemap',
entry: {
app: ['zone.js/dist/zone', './app/main.ts']
},
output: {
filename: '[name].js',
chunkFilename: 'lfd6093bc62332f579200891cc0e9c8[name].js',
publicPath: './build/',
path: path.resolve(__dirname, 'build')
},
node: {
console: true,
global: true,
process: true,
Buffer: false,
setImmediate: false
},
module: {
rules
},
resolve: {
extensions: ['.ts', '.js'],
modules: [
'app',
'node_modules'
]
},
plugins
};

有没有一种方法可以在仅客户端 上解决这个问题?如果没有,我最后的办法是检查 api 版本并向用户弹出窗口以清除缓存。

最佳答案

默认情况下,Webpack 不知道文件是否更改,但您可以通过更改输出文件名并在其上放置 contenthash 来帮助 webpack:

输出:{ 文件名:'[name].[contenthash].js'}

通过这样做,将生成一个基于文件内容的哈希值,如果文件内容发生变化,这个哈希值也会发生变化,因此 webpack 知道它必须重建所有内容。

关于javascript - 以在新构建上传时不需要清除缓存的方式实现缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50541688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com