Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 3x 3x 3x 3x 3x | import { join, dirname } from 'path'
import { fileURLToPath } from 'url'
const currentDir = dirname(fileURLToPath(import.meta.url))
const root = join( currentDir, '../')
const audioDirectory = join( root, 'audio')
const publicDirectory = join( root, 'public')
const songsDirectory = join(audioDirectory, 'songs')
export default {
port: process.env.PORT || 3000,
dir: {
root,
publicDirectory,
audioDirectory,
songsDirectory,
fxDirectory: join(audioDirectory, 'fx')
},
pages: {
homeHTML: 'home/index.html',
controllerHTML: 'controller/index.html',
},
location: {
home: '/home'
},
constants: {
CONTENT_TYPE: {
'.html': 'text/html',
'.css': 'text/css',
'.js': 'text/javascript',
},
audioMediaType: 'mp3',
songVolume: '0.99',
fxVolume: '0.1',
fallbackBitRate: '128000',
bitRateDivisor: 8,
englishConversation: join(songsDirectory, 'conversation.mp3')
}
}
|