article view and webpack caching

This commit is contained in:
刘浩远 2020-07-19 14:55:39 +08:00
parent 435c150b18
commit 7fde620d00
4 changed files with 13 additions and 4 deletions

View File

@ -91,6 +91,7 @@
"electron-react-devtools": "^0.5.3",
"electron-store": "^5.2.0",
"electron-window-state": "^5.0.3",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^4.3.0",
"nedb": "^1.8.0",
"qrcode.react": "^1.0.0",

View File

@ -215,7 +215,7 @@ class Article extends React.Component<ArticleProps, ArticleState> {
key={this.props.item._id + (this.state.loadWebpage ? "_" : "")}
src={this.state.loadWebpage ? this.props.item.link : this.articleView()}
webpreferences="contextIsolation,disableDialogs,autoplayPolicy=document-user-activation-required"
partition="sandbox" />
partition={this.state.loadWebpage ? "sandbox" : undefined} />
</FocusZone>
)
}

View File

@ -61,7 +61,7 @@ const winManager = new WindowManager()
app.on("window-all-closed", () => {
if (winManager.hasWindow()) {
winManager.mainWindow.webContents.session.clearStorageData({ storages: ["cookies"] })
winManager.mainWindow.webContents.session.clearStorageData({ storages: ["cookies", "localstorage"] })
}
winManager.mainWindow = null
if (restarting) {

View File

@ -1,4 +1,5 @@
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
module.exports = [
{
@ -19,7 +20,10 @@ module.exports = [
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
path: __dirname + '/dist',
filename: 'electron.js'
}
},
plugins: [
new HardSourceWebpackPlugin()
]
},
{
mode: 'production',
@ -38,7 +42,10 @@ module.exports = [
output: {
path: __dirname + '/dist',
filename: 'preload.js'
}
},
plugins: [
new HardSourceWebpackPlugin()
]
},
{
mode: 'production',
@ -63,6 +70,7 @@ module.exports = [
filename: 'index.js'
},
plugins: [
new HardSourceWebpackPlugin(),
new HtmlWebpackPlugin({
template: './src/index.html'
})