on windows i have addition steps to start it working:
npm install wasm-pack
npm install next@latest //this install Next.js 16.1.6
fix next.config.js adding 1 string:
module.exports = {
output: "export",
basePath: "/dtvis",
experimental: {
webpackBuildWorker: true,
},
turbopack: {},
webpack: (
config,
ps. have to install rust - https://rust-lang.org/tools/install/
and build parser "by hands":
cd dtvis\parser
wasm-pack build
and here we go !

on windows i have addition steps to start it working:
npm install wasm-packnpm install next@latest//this install Next.js 16.1.6fix next.config.js adding 1 string:
module.exports = {
output: "export",
basePath: "/dtvis",
experimental: {
webpackBuildWorker: true,
},
turbopack: {},webpack: (
config,
ps. have to install rust - https://rust-lang.org/tools/install/
and build parser "by hands":
and here we go !