FFmpeg to WASM build setup + Vue app.

This commit is contained in:
Alf
2020-09-23 19:06:40 -07:00
commit 711903032c
20 changed files with 12826 additions and 0 deletions

11
www/vue.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
pages: {
index: {
entry: 'src/main.js',
title: 'FFMpeg WebTools',
}
},
publicPath: process.env.NODE_ENV === 'production'
? '/ffmpeg-webtools/'
: '/',
};