2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 23:00:56 +00:00
books/webpack.config.js
2018-01-08 17:59:49 +05:30

44 lines
1.2 KiB
JavaScript

const path = require('path');
module.exports = {
entry: './index.js',
devServer: {
contentBase: path.join(__dirname),
compress: true,
port: 9000,
},
devtool: 'inline-source-map',
output: {
filename: './js/bundle.js',
publicPath: '/'
},
module: {
rules: [{
test: /\.scss$/,
use: [
{
loader: "style-loader" // creates style nodes from JS strings
},
{
loader: "css-loader" // translates CSS into CommonJS
},
{
loader: 'postcss-loader', // Run post css actions
options: {
plugins: function () { // post css plugins, can be exported to postcss.config.js
return [
require('precss'),
require('autoprefixer')
];
}
},
},
{
loader: "sass-loader", // compiles Sass to CSS
options: {
includePaths: ["node_modules", "./frappe/client/scss"]
}
}]
}]
}
};