mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
fix: Add WASM files to Vite Allow List and change devPath to localhost to fix Web Example (#5560)
Co-authored-by: Ben Wishovich <ben@benw.is>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"build": {
|
||||
"beforeBuildCommand": "yarn build:tauri",
|
||||
"beforeDevCommand": "yarn dev:tauri",
|
||||
"devPath": "http://127.0.0.1:5173",
|
||||
"devPath": "http://localhost:5173",
|
||||
"distDir": "../../build"
|
||||
},
|
||||
"package": {
|
||||
|
||||
@@ -25,6 +25,12 @@ if (TARGET === 'web') {
|
||||
}
|
||||
|
||||
const config: UserConfig = {
|
||||
server: {
|
||||
fs: {
|
||||
// Allow serving the wasm file from this folder.
|
||||
allow: ['.']
|
||||
}
|
||||
},
|
||||
plugins,
|
||||
resolve: {
|
||||
alias: {
|
||||
|
||||
Reference in New Issue
Block a user