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
Currently, the lit-app.js file is the entry point of the application in the webpack config.
lit-app.js
const commonConfig = merge([ { entry: './src/lit-app.js', output: { path: OUTPUT_PATH, filename: '[name].[chunkhash:8].js' }, ....
I see several issues with this:
create-lit-app
lit-app
I suggest to put the main entry point to be the index.html itself, but any other idea is very welcome!
index.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the
lit-app.js
file is the entry point of the application in the webpack config.I see several issues with this:
create-lit-app
will have an identicallit-app
web component in their front-end, possibly leading to conflicts.lit-app
element, and it took me a while to figure it out.I suggest to put the main entry point to be the
index.html
itself, but any other idea is very welcome!The text was updated successfully, but these errors were encountered: