kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Merge branch 'subdir-fixes' into 'develop'
Subdirectory fixes: sounds, publicPath See merge request soapbox-pub/soapbox-fe!711build-json
commit
57e1fec66a
|
@ -1,5 +1,8 @@
|
|||
'use strict';
|
||||
|
||||
import { join } from 'path';
|
||||
import { FE_BASE_PATH } from 'soapbox/build_config';
|
||||
|
||||
const createAudio = sources => {
|
||||
const audio = new Audio();
|
||||
sources.forEach(({ type, src }) => {
|
||||
|
@ -28,21 +31,21 @@ export default function soundsMiddleware() {
|
|||
const soundCache = {
|
||||
boop: createAudio([
|
||||
{
|
||||
src: '/sounds/boop.ogg',
|
||||
src: join(FE_BASE_PATH, '/sounds/boop.ogg'),
|
||||
type: 'audio/ogg',
|
||||
},
|
||||
{
|
||||
src: '/sounds/boop.mp3',
|
||||
src: join(FE_BASE_PATH, '/sounds/boop.mp3'),
|
||||
type: 'audio/mpeg',
|
||||
},
|
||||
]),
|
||||
chat: createAudio([
|
||||
{
|
||||
src: '/sounds/chat.oga',
|
||||
src: join(FE_BASE_PATH, '/sounds/chat.oga'),
|
||||
type: 'audio/ogg',
|
||||
},
|
||||
{
|
||||
src: '/sounds/chat.mp3',
|
||||
src: join(FE_BASE_PATH, '/sounds/chat.mp3'),
|
||||
type: 'audio/mpeg',
|
||||
},
|
||||
]),
|
||||
|
|
|
@ -39,7 +39,7 @@ module.exports = {
|
|||
chunkFilename: 'packs/js/[name]-[chunkhash].chunk.js',
|
||||
hotUpdateChunkFilename: 'packs/js/[id]-[hash].hot-update.js',
|
||||
path: output.path,
|
||||
publicPath: FE_BASE_PATH,
|
||||
publicPath: join(FE_BASE_PATH, '/'),
|
||||
},
|
||||
|
||||
optimization: {
|
||||
|
|
Ładowanie…
Reference in New Issue