You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Discovered in #110, our shared css loading for shadowDOM only has webpack support.
// in src/main.js/tsimportsharedfrom'./shared.css';Aurelia.register(StyleConfiguration.shadowDOM({// optionally add the shared styles for all componentssharedStyles: [shared]}))//...
In webpack.config.js, we have skipped style-loader if the css is loaded from src/main (issuer).
{test: /\.css$/i,// For style loaded in src/main.js, it's not loaded by style-loader.// It's for shared styles for shadow-dom only.issuer: /[/\\]src[/\\]main\.(js|ts)$/,use: ['css-loader',postcssLoader]},
We don't have equivalent parcel/vite/gulp setup. Gulp is probably easiest to support. Vite maybe possible. No idea about parcel config.
The text was updated successfully, but these errors were encountered:
Discovered in #110, our shared css loading for shadowDOM only has webpack support.
In webpack.config.js, we have skipped style-loader if the css is loaded from src/main (issuer).
We don't have equivalent parcel/vite/gulp setup. Gulp is probably easiest to support. Vite maybe possible. No idea about parcel config.
The text was updated successfully, but these errors were encountered: