'publish'

This commit is contained in:
2023-05-05 21:51:02 +02:00
parent cf2dba3648
commit 1eef943a0f
13 changed files with 27 additions and 27 deletions
+15 -1
View File
@@ -1,5 +1,19 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
publicPath: process.env.NODE_ENV === 'production' ? '/ToneAPI_webclient/' : '/'
publicPath: process.env.NODE_ENV === 'production' ? '/ToneAPI_webclient/' : '/',
pages: {
index: {
entry: 'src/main.ts',
template: 'public/index.html',
filename: 'index.html',
title: 'Players : Tone API'
},
server: {
entry: 'src/main.ts',
template: 'public/servers.html',
filename: 'servers.html',
title: 'Servers : Tone API'
}
}
})