Skip to content

Instantly share code, notes, and snippets.

@tjad
Created December 9, 2019 09:30
Show Gist options
  • Save tjad/4d26217cb8a4b7550c6f81f6eabc67be to your computer and use it in GitHub Desktop.
Save tjad/4d26217cb8a4b7550c6f81f6eabc67be to your computer and use it in GitHub Desktop.
module: {
rules: [
{
test: /\.styl$/,
loader: 'style-loader!css-loader!stylus-loader'
},
{ test: /\.css$/i,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader?sourceMap']
}) },
{ test: /\.ts$/i, use: ['ts-loader', '@aurelia/webpack-loader'], exclude: /node_modules/ },
{ test: /\.html$/i, use: '@aurelia/webpack-loader', exclude: /node_modules/ }
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment