Skip to content

Instantly share code, notes, and snippets.

@piotrekwitkowski
Created February 22, 2019 22:47
Show Gist options
  • Save piotrekwitkowski/2a4fb6f64fb67408fa12961fcdd6a489 to your computer and use it in GitHub Desktop.
Save piotrekwitkowski/2a4fb6f64fb67408fa12961fcdd6a489 to your computer and use it in GitHub Desktop.
Użycie Sass/CSS w customElmentach przy użyciu lit-element i webpacka (2)
module: {
rules: [
{
test: /\.scss$/,
use: [
'css-loader',
{
loader: 'sass-loader',
options: { includePaths: ['./node_modules'] } //prawdopodobnie potrzebujesz tego, jeśli korzystasz z dalszych bibliotek, jak np. Material Design
}
]
},
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment