Open jlengrand opened 5 years ago
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
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!