123456789101112131415161718192021222324252627282930313233 |
- const path = require('path')
- const distDir = path.resolve(__dirname, './dist')
- module.exports = function () {
- return {
- automaticStart: {
- active: true
- },
- build: {
- distDir: distDir,
- devPath: 'http://localhost:4000' // devServer URL or path to html file
- },
- ctx: {},
- tauri: {
- embeddedServer: {
- active: true
- },
- bundle: {
- active: true
- },
- whitelist: {
- all: true
- },
- window: {
- title: 'Tauri App'
- },
- security: {
- csp: 'default-src data: filesystem: ws: http: https: \'unsafe-eval\' \'unsafe-inline\''
- }
- },
- edge: true
- }
- }
|