const path = require('path'); module.exports = { configureWebpack: { plugins: [ // new FlowWebpackPlugin() ] }, pluginOptions: { 'style-resources-loader': { preProcessor: 'sass', // patterns: [path.resolve(__dirname, './src/style.sass')], }, }, devServer: { proxy: { "/_doc": { target: "http://127.0.0.1:1323", secure: false } } } }