mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-14 17:24:51 +01:00
23 lines
509 B
JavaScript
23 lines
509 B
JavaScript
exports.onCreateWebpackConfig = ({ actions }) => {
|
|
actions.setWebpackConfig({
|
|
node: {
|
|
// 'fs' fix for squid.js
|
|
fs: 'empty'
|
|
}
|
|
})
|
|
}
|
|
|
|
exports.onCreatePage = async ({ page, actions }) => {
|
|
const { createPage } = actions
|
|
// page.matchPath is a special key that's used for matching pages
|
|
// only on the client.
|
|
const handleClientSideOnly = page.path.match(/^\/asset/)
|
|
|
|
if (handleClientSideOnly) {
|
|
page.matchPath = '/asset/*'
|
|
|
|
// Update the page.
|
|
createPage(page)
|
|
}
|
|
}
|