Moved the native opus codec into the web directory

canary
WolverinDEV 2020-04-02 18:01:30 +02:00
parent 7c98e5ec7d
commit 16161abd80
9 changed files with 2 additions and 3 deletions

@ -1 +0,0 @@
Subproject commit 923bebde197f42ba8e55cb055dce3ff22bbea54d

View File

@ -160,7 +160,7 @@ const APP_FILE_LIST_WEB_SOURCE: ProjectResource[] = [
"build-target": "dev|rel", "build-target": "dev|rel",
"path": "wasm/", "path": "wasm/",
"local-path": "./asm/generated/" "local-path": "./web/native-codec/generated/"
}, },
{ /* web css files */ { /* web css files */
"web-only": true, "web-only": true,

View File

@ -10,7 +10,7 @@ Object.assign(config.resolve.alias, {
"tc-shared": path.resolve(__dirname, "shared/js"), "tc-shared": path.resolve(__dirname, "shared/js"),
"tc-backend/web": path.resolve(__dirname, "web/js"), "tc-backend/web": path.resolve(__dirname, "web/js"),
"tc-backend": path.resolve(__dirname, "web/js"), "tc-backend": path.resolve(__dirname, "web/js"),
"tc-generated/codec/opus": path.resolve(__dirname, "asm/generated/TeaWeb-Worker-Codec-Opus.js"), "tc-generated/codec/opus": path.resolve(__dirname, "web/native-codec/generated/TeaWeb-Worker-Codec-Opus.js"),
}); });
export = config; export = config;