1234567891011121314151617181920212223242526272829303132 |
- const path = require('path')
- const distDir = path.resolve(__dirname, './public')
- module.exports = function () {
- return {
- build: {
- distDir: distDir,
- devPath: 'http://localhost:8000' // devServer URL or html dir
- },
- 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: {
- active: true
- }
- }
- }
- }
|