We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I was using this to build a Website but I am facing issues. The latest one is with the sample project. Sharing the steps to reproduce the error
// require('./header.js'); // require('./sidenav.js')
import { ReactiveVar } from '@blastjs/reactive-var'; const { LocalCollection } = require("@blastjs/minimongo/dist/local_collection"); export const Data = new LocalCollection("data"); // require('./header.js'); // require('./sidenav.js'); require('./main.html'); Template.main.onCreated(function onCreated() { setInterval(function(){ Data.insert({data: Date.now()}) },1000); }); Template.main.helpers({ allData() { return Data.find({}); }, });
` Go to inside main.html
<template name="main"> {{#each allData}} {{data}} {{/each}} </template>
This time, everything will work as expected but if you change main.html to this
<template name="main"> <div> Hello</div> {{#each allData}} {{data}} {{/each}} </template>
This would stop working. You will not be able to compile using npx webpack
Sharing the logs too
The text was updated successfully, but these errors were encountered:
Also, If you try running sample project, normally then also it does not work, Same kind of errors
Sorry, something went wrong.
No branches or pull requests
Hello,
I was using this to build a Website but I am facing issues. The latest one is with the sample project. Sharing the steps to reproduce the error
// require('./header.js'); // require('./sidenav.js')
`
`
Go to inside main.html
This time, everything will work as expected but if you change main.html to this
This would stop working. You will not be able to compile using npx webpack
Sharing the logs too
The text was updated successfully, but these errors were encountered: