UNPKG
sonify
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
A module to sonify data
sonify
/
demo
/
next.config.js
15 lines
(13 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const
withCSS =
require
(
"@zeit/next-css"
);
module
.
exports
=
withCSS
({
cssModules
:
false
,
exportPathMap
:
function
(
) {
return
{
"/"
: {
page
:
"/"
} }; },
assetPrefix
: process.
env
.
NODE_ENV
===
"production"
?
"https://kaitmore.github.io/sonify/"
:
""
});