Sha256: 3509e7018e3afd366fdc749766773b8116f5b39130cd07fd0b8d7ac19059ba03
Contents?: true
Size: 879 Bytes
Versions: 19
Compression:
Stored size: 879 Bytes
Contents
const path = require('path'); module.exports = { base: '/urbanopt-geojson-gem/', themeConfig: { navbar: false, sidebar: [ "/", { title: "Schemas", children: [ "/schemas/building-properties", "/schemas/district-system-properties.md", "/schemas/electrical-connector-properties.md", "/schemas/electrical-junction-properties.md", "/schemas/region-properties.md", "/schemas/site-properties.md", "/schemas/thermal-connector-properties.md", "/schemas/thermal-junction-properties.md" ] } ] }, chainWebpack: config => { config.module .rule('json') .test(/\.json$/) .use(path.join(__dirname, 'json-schema-deref-loader.js')) .loader(path.join(__dirname, 'json-schema-deref-loader.js')) .end() }, };
Version data entries
19 entries across 19 versions & 1 rubygems