Skip to content

Commit

Permalink
chore: revert whitespace changes for a clean commit log.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshJarr committed Nov 8, 2022
1 parent ad25f25 commit ffd5304
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions electron_app/vue.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');

module.exports = {

configureWebpack: {
plugins: [
new NodePolyfillPlugin()
Expand All @@ -9,30 +10,30 @@ module.exports = {
pluginOptions: {
electronBuilder: {
preload: './src/preload.js',

// Or, for multiple preload files:
// preload: { preload: 'src/preload.js', otherPreload: 'src/preload2.js' }
builderOptions: {
appId: 'com.linerai.liner',
afterSign: "./afterSignHook.js",
"extraResources": [{
"from": process.env.BACKEND_BUILD_PATH ,
"from": process.env.BACKEND_BUILD_PATH ,
"to": "core",
"filter": [
"**/*"
]
}], // access via path.join(path.dirname(__dirname), 'liner_core' );

"mac": {
"icon" : "build/Icon-1024.png" ,
"icon" : "build/Icon-1024.png" ,
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"minimumSystemVersion": "12.3.0",
"extendInfo": {
"LSMinimumSystemVersion": "12.3.0"
} ,

} ,
"target": {
"target": "dmg",
"arch": [
Expand All @@ -42,11 +43,11 @@ module.exports = {
},

"win": {
"icon" : "build/Icon-1024.png" ,
"icon" : "build/Icon-1024.png" ,
"target": {
"target": "NSIS",
"arch": [
process.arch
process.arch
]
}
}
Expand Down

0 comments on commit ffd5304

Please sign in to comment.