(opts)
| 4 | |
| 5 | module.exports = { |
| 6 | modifyWebpackConfig(opts) { |
| 7 | const config = Object.assign({}, opts.webpackConfig); |
| 8 | |
| 9 | config.resolve.alias = { |
| 10 | components: path.resolve(__dirname, './src/components'), |
| 11 | mutations: path.resolve(__dirname, './src/mutations'), |
| 12 | utils: path.resolve(__dirname, './src/utils'), |
| 13 | }; |
| 14 | |
| 15 | return config; |
| 16 | }, |
| 17 | |
| 18 | plugins: [ |
| 19 | 'scss' |
nothing calls this directly
no outgoing calls
no test coverage detected