12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- export default {
- package: {
- productName: 'app',
- version: '0.1.0'
- },
- build: {
- distDir: '../dist',
- devPath: 'http://localhost:4000',
- beforeDevCommand: '',
- beforeBuildCommand: ''
- },
- tauri: {
- bundle: {
- active: true,
- targets: 'all', // or an array of targets
- identifier: 'com.tauri.dev',
- icon: [
- 'icons/32x32.png',
- 'icons/128x128.png',
- 'icons/128x128@2x.png',
- 'icons/icon.icns',
- 'icons/icon.ico'
- ],
- resources: [],
- externalBin: [],
- copyright: '',
- category: 'DeveloperTool',
- shortDescription: '',
- longDescription: '',
- deb: {
- depends: [],
- useBootstrapper: false
- },
- osx: {
- frameworks: [],
- minimumSystemVersion: '',
- useBootstrapper: false,
- exceptionDomain: ''
- }
- },
- allowlist: {
- all: true
- },
- windows: [
- {
- title: 'Tauri App',
- width: 800,
- height: 600,
- resizable: true,
- fullscreen: false
- }
- ],
- security: {
- csp:
- "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
- }
- }
- }
|