16 lines
No EOL
476 B
JavaScript
16 lines
No EOL
476 B
JavaScript
// https://distrokid.com/hyperfollow/heikadog/songs-for-dogs-to-sleep-to-ambient-2module.exports = {
|
|
const SocialRewrites = require("./lib/socialRewrites.js")
|
|
|
|
module.exports = {
|
|
// ... rest of the configuration.
|
|
output: 'standalone',
|
|
rewrites: async function () {
|
|
return [
|
|
{
|
|
source: "/favicon.ico",
|
|
destination: "/assets/favicon.png"
|
|
},
|
|
...SocialRewrites
|
|
]
|
|
}
|
|
} |