mirror of
https://github.com/yang991178/fluent-reader.git
synced 2025-04-03 13:11:24 +02:00
article view and webpack caching
This commit is contained in:
parent
435c150b18
commit
7fde620d00
@ -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",
|
||||
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
@ -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) {
|
||||
|
@ -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'
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user