mirror of
https://github.com/yang991178/fluent-reader.git
synced 2025-04-05 06:01:16 +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-react-devtools": "^0.5.3",
|
||||||
"electron-store": "^5.2.0",
|
"electron-store": "^5.2.0",
|
||||||
"electron-window-state": "^5.0.3",
|
"electron-window-state": "^5.0.3",
|
||||||
|
"hard-source-webpack-plugin": "^0.13.1",
|
||||||
"html-webpack-plugin": "^4.3.0",
|
"html-webpack-plugin": "^4.3.0",
|
||||||
"nedb": "^1.8.0",
|
"nedb": "^1.8.0",
|
||||||
"qrcode.react": "^1.0.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 ? "_" : "")}
|
key={this.props.item._id + (this.state.loadWebpage ? "_" : "")}
|
||||||
src={this.state.loadWebpage ? this.props.item.link : this.articleView()}
|
src={this.state.loadWebpage ? this.props.item.link : this.articleView()}
|
||||||
webpreferences="contextIsolation,disableDialogs,autoplayPolicy=document-user-activation-required"
|
webpreferences="contextIsolation,disableDialogs,autoplayPolicy=document-user-activation-required"
|
||||||
partition="sandbox" />
|
partition={this.state.loadWebpage ? "sandbox" : undefined} />
|
||||||
</FocusZone>
|
</FocusZone>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@ const winManager = new WindowManager()
|
|||||||
|
|
||||||
app.on("window-all-closed", () => {
|
app.on("window-all-closed", () => {
|
||||||
if (winManager.hasWindow()) {
|
if (winManager.hasWindow()) {
|
||||||
winManager.mainWindow.webContents.session.clearStorageData({ storages: ["cookies"] })
|
winManager.mainWindow.webContents.session.clearStorageData({ storages: ["cookies", "localstorage"] })
|
||||||
}
|
}
|
||||||
winManager.mainWindow = null
|
winManager.mainWindow = null
|
||||||
if (restarting) {
|
if (restarting) {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
|
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{
|
{
|
||||||
@ -19,7 +20,10 @@ module.exports = [
|
|||||||
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
|
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
|
||||||
path: __dirname + '/dist',
|
path: __dirname + '/dist',
|
||||||
filename: 'electron.js'
|
filename: 'electron.js'
|
||||||
}
|
},
|
||||||
|
plugins: [
|
||||||
|
new HardSourceWebpackPlugin()
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
@ -38,7 +42,10 @@ module.exports = [
|
|||||||
output: {
|
output: {
|
||||||
path: __dirname + '/dist',
|
path: __dirname + '/dist',
|
||||||
filename: 'preload.js'
|
filename: 'preload.js'
|
||||||
}
|
},
|
||||||
|
plugins: [
|
||||||
|
new HardSourceWebpackPlugin()
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
@ -63,6 +70,7 @@ module.exports = [
|
|||||||
filename: 'index.js'
|
filename: 'index.js'
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HardSourceWebpackPlugin(),
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
template: './src/index.html'
|
template: './src/index.html'
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user