-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
hi i been using bourbon and neat with gulp but i been force to move to webpack,
i have issues importing it and using it with a simple webpack conf file
like this
module.exports ={
mode:'none',
entry :"./src/app.js",
output: {
path:__dirname+"/public",
filename:"bundle.js"
},
devServer:{
contentBase: __dirname+ "/public",
port: 3000
},
module:{
rules:[{loader:"babel-loader",
test:/\.js/
},
{
test:/\.s?css/,
use:[
{ loader: 'style-loader'},
{loader: 'css-loader'},
{loader:'sass-loader',options:{includePaths:[require('node-bourbon').includePaths,require('node-neat').includePaths]}}
]
}
]//end of rules
}
};
can some one show me how to load and use bourbon on here or what im i doing wrong
thanks
Metadata
Metadata
Assignees
Labels
No labels