2020-10-11 13:26:24 +00:00
|
|
|
module.exports = [
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/fonts/whitney-500.woff",
|
|
|
|
target: "/static/whitney-500.woff"
|
|
|
|
},
|
2020-10-12 11:19:10 +00:00
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/fonts/whitney-400.woff",
|
|
|
|
target: "/static/whitney-400.woff"
|
|
|
|
},
|
2020-10-11 13:26:24 +00:00
|
|
|
{
|
2020-10-15 09:06:41 +00:00
|
|
|
type: "js",
|
2020-10-11 13:26:24 +00:00
|
|
|
source: "/js/basic.js",
|
|
|
|
target: "/static/basic.js"
|
|
|
|
},
|
|
|
|
{
|
2020-10-15 09:06:41 +00:00
|
|
|
type: "js",
|
2020-10-11 13:26:24 +00:00
|
|
|
source: "/js/groups.js",
|
|
|
|
target: "/static/groups.js"
|
|
|
|
},
|
2020-10-12 11:19:10 +00:00
|
|
|
{
|
2020-10-15 09:06:41 +00:00
|
|
|
type: "js",
|
2020-10-12 11:19:10 +00:00
|
|
|
source: "/js/chat-input.js",
|
|
|
|
target: "/static/chat-input.js"
|
|
|
|
},
|
2020-10-12 12:35:54 +00:00
|
|
|
{
|
2020-10-15 09:06:41 +00:00
|
|
|
type: "js",
|
2020-10-12 12:35:54 +00:00
|
|
|
source: "/js/room-picker.js",
|
|
|
|
target: "/static/room-picker.js"
|
|
|
|
},
|
2020-10-15 09:06:41 +00:00
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/store/store.js",
|
|
|
|
target: "/static/store/store.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/store/Subscribable.js",
|
|
|
|
target: "/static/store/Subscribable.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/store/SubscribeValue.js",
|
|
|
|
target: "/static/store/SubscribeValue.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/store/SubscribeMapList.js",
|
|
|
|
target: "/static/store/SubscribeMapList.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/store/SubscribeSet.js",
|
|
|
|
target: "/static/store/SubscribeSet.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/sync/sync.js",
|
|
|
|
target: "/static/sync/sync.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "js",
|
|
|
|
source: "/js/lsm.js",
|
|
|
|
target: "/static/lsm.js"
|
|
|
|
},
|
2020-10-11 13:26:24 +00:00
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/fonts/whitney-500.woff",
|
|
|
|
target: "/static/whitney-500.woff"
|
|
|
|
},
|
2020-10-12 12:35:54 +00:00
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/icons/directs.svg",
|
|
|
|
target: "/static/directs.svg"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/icons/channels.svg",
|
|
|
|
target: "/static/channels.svg"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/icons/join-event.svg",
|
|
|
|
target: "/static/join-event.svg"
|
|
|
|
},
|
2020-10-11 13:26:24 +00:00
|
|
|
{
|
|
|
|
type: "sass",
|
|
|
|
source: "/sass/main.sass",
|
|
|
|
target: "/static/main.css"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "pug",
|
|
|
|
source: "/home.pug",
|
|
|
|
target: "/index.html"
|
|
|
|
}
|
|
|
|
]
|