浏览代码

Delete tauri.conf.js

nothingismagick 5 年之前
父节点
当前提交
098033a6c8
共有 1 个文件被更改,包括 0 次插入31 次删除
  1. 0 31
      tauri.conf.js

+ 0 - 31
tauri.conf.js

@@ -1,31 +0,0 @@
-const
-  path = require('path');
-  const distDir = path.resolve(__dirname, './dist')
-
-module.exports = function () {
-  return {
-    build: {
-      distDir: distDir,
-      APP_URL: 'http://localhost:4000' // must use a localhost server for now
-    },
-    ctx: {},
-    tauri: {
-      embeddedServer: {
-        active: true
-      },
-      bundle: {
-        active: true
-      },
-      whitelist: {
-        all: false
-      },
-      window: {
-        title: 'Tauri App'
-      },
-      security: {
-        csp: 'default-src data: filesystem: ws: http: https: \'unsafe-eval\' \'unsafe-inline\''
-      }
-    },
-    edge: true
-  }
-}