Speiseplan der Mensen der Georg-August-Universität Göttingen https://mensa.schneider-hosting.de
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.

12 lines
307 B

7 years ago
  1. var utils = require('./utils')
  2. var config = require('../config')
  3. var isProduction = process.env.NODE_ENV === 'production'
  4. module.exports = {
  5. loaders: utils.cssLoaders({
  6. sourceMap: isProduction
  7. ? config.build.productionSourceMap
  8. : config.dev.cssSourceMap,
  9. extract: isProduction
  10. })
  11. }