2020-10-11 13:26:24 +00:00
|
|
|
module.exports = [
|
2020-10-19 11:43:33 +00:00
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/fonts/whitney-500.woff",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/whitney-500.woff",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/fonts/whitney-400.woff",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/whitney-400.woff",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
2020-10-21 07:34:09 +00:00
|
|
|
{
|
2020-10-23 14:15:14 +00:00
|
|
|
type: "bundle",
|
2020-10-21 06:33:36 +00:00
|
|
|
source: "/js/login.js",
|
|
|
|
target: "/static/login.js",
|
|
|
|
},
|
2020-10-23 14:15:14 +00:00
|
|
|
{
|
|
|
|
type: "bundle",
|
|
|
|
source: "/js/main.js",
|
|
|
|
target: "/static/bundle.js"
|
|
|
|
},
|
2020-10-31 17:17:34 +00:00
|
|
|
{
|
|
|
|
type: "module",
|
|
|
|
source: "/js/hljs.js",
|
|
|
|
target: "/static/hljs.js"
|
|
|
|
},
|
2020-10-19 11:43:33 +00:00
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/fonts/whitney-500.woff",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/whitney-500.woff",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/icons/directs.svg",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/directs.svg",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/icons/channels.svg",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/channels.svg",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "file",
|
|
|
|
source: "/assets/icons/join-event.svg",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/join-event.svg",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "sass",
|
|
|
|
source: "/sass/main.sass",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/static/main.css",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "sass",
|
|
|
|
source: "/sass/login.sass",
|
|
|
|
target: "/static/login.css",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "pug",
|
|
|
|
source: "/home.pug",
|
2020-10-20 18:22:13 +00:00
|
|
|
target: "/index.html",
|
2020-10-19 11:43:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "pug",
|
|
|
|
source: "/login.pug",
|
2020-10-21 07:34:09 +00:00
|
|
|
target: "/login/index.html",
|
2020-10-20 18:22:13 +00:00
|
|
|
},
|
|
|
|
];
|