You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
287 B

const path = require("path");
module.exports = {
output: "export",
sassOptions: {
includePaths: [path.join(__dirname, "styles")],
},
webpack: function (config, { dev, isServer }) {
config.module.rules.push({
test: /\.md$/,
use: "raw-loader",
});
return config;
},
};