Work on closed notice.

This commit is contained in:
2019-03-03 17:53:34 +01:00
parent ebe4e85fad
commit 9b55f56975
8 changed files with 88 additions and 28 deletions

View File

@@ -5,5 +5,16 @@ module.exports = {
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'public')
},
module: {
rules: [{
test: /\.scss$/,
use: [
"style-loader", // creates style nodes from JS strings
"css-loader", // translates CSS into CommonJS
"postcss-loader", // Will run auto-prefixer for compatibility
"sass-loader" // compiles Sass to CSS, using Node Sass by default
]
}]
}
};
};